@@ -262,8 +262,8 @@ added: v16.11.0
262
262
* ` highWaterMark` {integer} **Default:** ` 64 * 1024 `
263
263
* Returns: {fs.ReadStream}
264
264
265
- Unlike the 16 kb default ` highWaterMark` for a {stream.Readable}, the stream
266
- returned by this method has a default ` highWaterMark` of 64 kb .
265
+ Unlike the 16 KiB default ` highWaterMark` for a {stream.Readable}, the stream
266
+ returned by this method has a default ` highWaterMark` of 64 KiB .
267
267
268
268
` options` can include ` start` and ` end` values to read a range of bytes from
269
269
the file instead of the entire file. Both ` start` and ` end` are inclusive and
@@ -2186,8 +2186,8 @@ changes:
2186
2186
* `fs` {Object|null} **Default:** `null`
2187
2187
* Returns: {fs.ReadStream}
2188
2188
2189
- Unlike the 16 kb default `highWaterMark` for a {stream.Readable}, the stream
2190
- returned by this method has a default `highWaterMark` of 64 kb .
2189
+ Unlike the 16 KiB default `highWaterMark` for a {stream.Readable}, the stream
2190
+ returned by this method has a default `highWaterMark` of 64 KiB .
2191
2191
2192
2192
`options` can include `start` and `end` values to read a range of bytes from
2193
2193
the file instead of the entire file. Both `start` and `end` are inclusive and
@@ -3430,8 +3430,8 @@ to read a complete file into memory.
3430
3430
The additional read overhead can vary broadly on different systems and depends
3431
3431
on the type of file being read . If the file type is not a regular file (a pipe
3432
3432
for instance) and Node .js is unable to determine an actual file size, each read
3433
- operation will load on 64 KB of data . For regular files, each read will process
3434
- 512 KB of data.
3433
+ operation will load on 64 KiB of data . For regular files, each read will process
3434
+ 512 KiB of data.
3435
3435
3436
3436
For applications that require as- fast- as- possible reading of file contents, it
3437
3437
is better to use ` fs.read()` directly and for application code to manage
0 commit comments