aboutsummaryrefslogtreecommitdiff
path: root/doc/api/fs.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/fs.md')
-rw-r--r--doc/api/fs.md42
1 files changed, 21 insertions, 21 deletions
diff --git a/doc/api/fs.md b/doc/api/fs.md
index 88a1bda040..1028b2f42a 100644
--- a/doc/api/fs.md
+++ b/doc/api/fs.md
@@ -368,7 +368,7 @@ Emitted when the `fs.ReadStream`'s file descriptor has been opened.
added: v6.4.0
-->
-* Value: {number}
+* {number}
The number of bytes that have been read so far.
@@ -377,7 +377,7 @@ The number of bytes that have been read so far.
added: v0.1.93
-->
-* Value: {string|Buffer}
+* {string|Buffer}
The path to the file the stream is reading from as specified in the first
argument to `fs.createReadStream()`. If `path` is passed as a string, then
@@ -488,61 +488,61 @@ This method is only valid when using [`fs.lstat()`][]
### stats.dev
-* Value: {number}
+* {number}
The numeric identifier of the device containing the file.
### stats.ino
-* Value: {number}
+* {number}
The file system specific "Inode" number for the file.
### stats.mode
-* Value: {number}
+* {number}
A bit-field describing the file type and mode.
### stats.nlink
-* Value: {number}
+* {number}
The number of hard-links that exist for the file.
### stats.uid
-* Value: {number}
+* {number}
The numeric user identifier of the user that owns the file (POSIX).
### stats.gid
-* Value: {number}
+* {number}
The numeric group identifier of the group that owns the file (POSIX).
### stats.rdev
-* Value: {number}
+* {number}
A numeric device identifier if the file is considered "special".
### stats.size
-* Value: {number}
+* {number}
The size of the file in bytes.
### stats.blksize
-* Value: {number}
+* {number}
The file system block size for i/o operations.
### stats.blocks
-* Value: {number}
+* {number}
The number of blocks allocated for this file.
@@ -551,7 +551,7 @@ The number of blocks allocated for this file.
added: v8.1.0
-->
-* Value: {number}
+* {number}
The timestamp indicating the last time this file was accessed expressed in
milliseconds since the POSIX Epoch.
@@ -561,7 +561,7 @@ milliseconds since the POSIX Epoch.
added: v8.1.0
-->
-* Value: {number}
+* {number}
The timestamp indicating the last time this file was modified expressed in
milliseconds since the POSIX Epoch.
@@ -571,7 +571,7 @@ milliseconds since the POSIX Epoch.
added: v8.1.0
-->
-* Value: {number}
+* {number}
The timestamp indicating the last time the file status was changed expressed
in milliseconds since the POSIX Epoch.
@@ -581,7 +581,7 @@ in milliseconds since the POSIX Epoch.
added: v8.1.0
-->
-* Value: {number}
+* {number}
The timestamp indicating the creation time of this file expressed in
milliseconds since the POSIX Epoch.
@@ -591,7 +591,7 @@ milliseconds since the POSIX Epoch.
added: v0.11.13
-->
-* Value: {Date}
+* {Date}
The timestamp indicating the last time this file was accessed.
@@ -600,7 +600,7 @@ The timestamp indicating the last time this file was accessed.
added: v0.11.13
-->
-* Value: {Date}
+* {Date}
The timestamp indicating the last time this file was modified.
@@ -609,7 +609,7 @@ The timestamp indicating the last time this file was modified.
added: v0.11.13
-->
-* Value: {Date}
+* {Date}
The timestamp indicating the last time the file status was changed.
@@ -618,7 +618,7 @@ The timestamp indicating the last time the file status was changed.
added: v0.11.13
-->
-* Value: {Date}
+* {Date}
The timestamp indicating the creation time of this file.
@@ -3472,7 +3472,7 @@ unclosed file descriptors after a `Promise` is resolved or rejected.
added: REPLACEME
-->
-Value: {number} The numeric file descriptor managed by the `FileHandle` object.
+* {number} The numeric file descriptor managed by the `FileHandle` object.
#### filehandle.appendFile(data, options)
<!-- YAML