@@ -185,18 +185,13 @@ changes:
185185 - v14.18.0
186186 pr-url: https://github.com/nodejs/node/pull/37490
187187 description: The `data` argument supports `AsyncIterable`, `Iterable` and `Stream`.
188- - version: v14.12.0
189- pr-url: https://github.com/nodejs/node/pull/34993
190- description: The `data` parameter will stringify an object with an
191- explicit `toString` function.
192188 - version: v14.0.0
193189 pr-url: https://github.com/nodejs/node/pull/31030
194190 description: The `data` parameter won't coerce unsupported input to
195191 strings anymore.
196192-->
197193
198- * ` data ` {string|Buffer|TypedArray|DataView|Object|AsyncIterable|Iterable
199- |Stream}
194+ * ` data ` {string|Buffer|TypedArray|DataView|AsyncIterable|Iterable|Stream}
200195* ` options ` {Object|string}
201196 * ` encoding ` {string|null} ** Default:** ` 'utf8' `
202197* Returns: {Promise} Fulfills with ` undefined ` upon success.
@@ -544,21 +539,17 @@ then resolves the promise with no arguments upon success.
544539<!-- YAML
545540added: v10.0.0
546541changes:
547- - version: v14.12.0
548- pr-url: https://github.com/nodejs/node/pull/34993
549- description: The ` buffer` parameter will stringify an object with an
550- explicit ` toString` function.
551542 - version: v14.0.0
552543 pr-url: https://github.com/nodejs/node/pull/31030
553544 description: The ` buffer` parameter won't coerce unsupported input to
554545 buffers anymore.
555546-->
556547
557- * ` buffer` {Buffer|TypedArray|DataView|string|Object }
548+ * ` buffer` {Buffer|TypedArray|DataView}
558549* ` offset` {integer} The start position from within ` buffer` where the data
559550 to write begins. **Default:** ` 0 `
560551* ` length` {integer} The number of bytes from ` buffer` to write. **Default:**
561- ` buffer .byteLength `
552+ ` buffer .byteLength - offset `
562553* ` position` {integer} The offset from the beginning of the file where the
563554 data from ` buffer` should be written. If ` position` is not a ` number` ,
564555 the data will be written at the current position. See the POSIX pwrite(2)
@@ -567,13 +558,10 @@ changes:
567558
568559Write ` buffer` to the file.
569560
570- If ` buffer` is a plain object, it must have an own (not inherited) ` toString`
571- function property.
572-
573561The promise is resolved with an object containing two properties:
574562
575563* ` bytesWritten` {integer} the number of bytes written
576- * ` buffer` {Buffer|TypedArray|DataView|string|Object } a reference to the
564+ * ` buffer` {Buffer|TypedArray|DataView} a reference to the
577565 ` buffer` written.
578566
579567It is unsafe to use ` filehandle .write ()` multiple times on the same file
@@ -589,31 +577,27 @@ the end of the file.
589577<!-- YAML
590578added: v10.0.0
591579changes:
592- - version: v14.12.0
593- pr-url: https://github.com/nodejs/node/pull/34993
594- description: The ` string` parameter will stringify an object with an
595- explicit ` toString` function.
596580 - version: v14.0.0
597581 pr-url: https://github.com/nodejs/node/pull/31030
598582 description: The ` string` parameter won't coerce unsupported input to
599583 strings anymore.
600584-->
601585
602- * ` string` {string|Object }
586+ * ` string` {string}
603587* ` position` {integer} The offset from the beginning of the file where the
604588 data from ` string` should be written. If ` position` is not a ` number` the
605589 data will be written at the current position. See the POSIX pwrite(2)
606590 documentation for more detail.
607591* ` encoding` {string} The expected string encoding. **Default:** ` ' utf8' `
608592* Returns: {Promise}
609593
610- Write ` string` to the file. If ` string` is not a string, or an object with an
611- own ` toString ` function property, the promise is rejected with an error.
594+ Write ` string` to the file. If ` string` is not a string, the promise is
595+ rejected with an error.
612596
613597The promise is resolved with an object containing two properties:
614598
615599* ` bytesWritten` {integer} the number of bytes written
616- * ` buffer` {string|Object } a reference to the ` string` written.
600+ * ` buffer` {string} a reference to the ` string` written.
617601
618602It is unsafe to use ` filehandle .write ()` multiple times on the same file
619603without waiting for the promise to be resolved (or rejected). For this
@@ -631,27 +615,21 @@ changes:
631615 - version: v15.14.0
632616 pr-url: https://github.com/nodejs/node/pull/37490
633617 description: The ` data` argument supports ` AsyncIterable` , ` Iterable` and ` Stream` .
634- - version: v14.12.0
635- pr-url: https://github.com/nodejs/node/pull/34993
636- description: The ` data` parameter will stringify an object with an
637- explicit ` toString` function.
638618 - version: v14.0.0
639619 pr-url: https://github.com/nodejs/node/pull/31030
640620 description: The ` data` parameter won't coerce unsupported input to
641621 strings anymore.
642622-->
643623
644- * ` data` {string|Buffer|TypedArray|DataView|Object|AsyncIterable|Iterable
645- |Stream}
624+ * ` data` {string|Buffer|TypedArray|DataView|AsyncIterable|Iterable|Stream}
646625* ` options` {Object|string}
647626 * ` encoding` {string|null} The expected character encoding when ` data` is a
648627 string. **Default:** ` ' utf8' `
649628* Returns: {Promise}
650629
651630Asynchronously writes data to a file, replacing the file if it already exists.
652- ` data` can be a string, a buffer, an {AsyncIterable} or {Iterable} object, or an
653- object with an own ` toString` function
654- property. The promise is resolved with no arguments upon success.
631+ ` data` can be a string, a buffer, an {AsyncIterable} or {Iterable} object.
632+ The promise is resolved with no arguments upon success.
655633
656634If ` options` is a string, then it specifies the ` encoding` .
657635
@@ -1509,19 +1487,14 @@ changes:
15091487 pr-url: https://github.com/nodejs/node/pull/35993
15101488 description: The options argument may include an AbortSignal to abort an
15111489 ongoing writeFile request.
1512- - version: v14.12.0
1513- pr-url: https://github.com/nodejs/node/pull/34993
1514- description: The `data` parameter will stringify an object with an
1515- explicit `toString` function.
15161490 - version: v14.0.0
15171491 pr-url: https://github.com/nodejs/node/pull/31030
15181492 description: The `data` parameter won't coerce unsupported input to
15191493 strings anymore.
15201494-->
15211495
15221496* `file` {string|Buffer|URL|FileHandle} filename or `FileHandle`
1523- * `data` {string|Buffer|TypedArray|DataView|Object|AsyncIterable|Iterable
1524- |Stream}
1497+ * `data` {string|Buffer|TypedArray|DataView|AsyncIterable|Iterable|Stream}
15251498* `options` {Object|string}
15261499 * `encoding` {string|null} **Default:** `'utf8'`
15271500 * `mode` {integer} **Default:** `0o666`
@@ -1530,8 +1503,7 @@ changes:
15301503* Returns: {Promise} Fulfills with `undefined` upon success.
15311504
15321505Asynchronously writes data to a file, replacing the file if it already exists.
1533- `data` can be a string, a {Buffer}, or, an object with an own (not inherited)
1534- `toString` function property.
1506+ `data` can be a string, a buffer, an {AsyncIterable} or {Iterable} object.
15351507
15361508The `encoding` option is ignored if `data` is a buffer.
15371509
@@ -4128,10 +4100,6 @@ This happens when:
41284100<!-- YAML
41294101added: v0.0.2
41304102changes:
4131- - version: v14.12.0
4132- pr-url: https://github.com/nodejs/node/pull/34993
4133- description: The `buffer` parameter will stringify an object with an
4134- explicit `toString` function.
41354103 - version: v14.0.0
41364104 pr-url: https://github.com/nodejs/node/pull/31030
41374105 description: The `buffer` parameter won' t coerce unsupported input to
@@ -4157,7 +4125,7 @@ changes:
41574125-->
41584126
41594127* ` fd` {integer}
4160- * ` buffer` {Buffer| TypedArray| DataView | string | Object }
4128+ * ` buffer` {Buffer| TypedArray| DataView }
41614129* ` offset` {integer}
41624130* ` length` {integer}
41634131* ` position` {integer}
@@ -4166,8 +4134,7 @@ changes:
41664134 * ` bytesWritten` {integer}
41674135 * ` buffer` {Buffer| TypedArray| DataView }
41684136
4169- Write ` buffer` to the file specified by ` fd` . If ` buffer` is a normal object, it
4170- must have an own ` toString` function property.
4137+ Write ` buffer` to the file specified by ` fd` .
41714138
41724139` offset` determines the part of the buffer to be written, and ` length` is
41734140an integer specifying the number of bytes to write.
@@ -5520,10 +5487,6 @@ this API: [`fs.writeFile()`][].
55205487<!-- YAML
55215488added: v0.1.21
55225489changes:
5523- - version: v14.12.0
5524- pr-url: https://github.com/nodejs/node/pull/34993
5525- description: The ` buffer` parameter will stringify an object with an
5526- explicit ` toString` function.
55275490 - version: v14.0.0
55285491 pr-url: https://github.com/nodejs/node/pull/31030
55295492 description: The ` buffer` parameter won't coerce unsupported input to
@@ -5541,15 +5504,12 @@ changes:
55415504-->
55425505
55435506* ` fd` {integer}
5544- * ` buffer` {Buffer|TypedArray|DataView|string|Object }
5507+ * ` buffer` {Buffer|TypedArray|DataView}
55455508* ` offset` {integer}
55465509* ` length` {integer}
55475510* ` position` {integer}
55485511* Returns: {number} The number of bytes written.
55495512
5550- If ` buffer` is a plain object, it must have an own (not inherited) ` toString`
5551- function property.
5552-
55535513For detailed information, see the documentation of the asynchronous version of
55545514this API: [` fs .write (fd, buffer... )` ][].
55555515
@@ -5558,10 +5518,6 @@ this API: [`fs.write(fd, buffer...)`][].
55585518<!-- YAML
55595519added: v0.11.5
55605520changes:
5561- - version: v14.12.0
5562- pr-url: https://github.com/nodejs/node/pull/34993
5563- description: The ` string` parameter will stringify an object with an
5564- explicit ` toString` function.
55655521 - version: v14.0.0
55665522 pr-url: https://github.com/nodejs/node/pull/31030
55675523 description: The ` string` parameter won't coerce unsupported input to
@@ -5572,14 +5528,11 @@ changes:
55725528-->
55735529
55745530* ` fd` {integer}
5575- * ` string` {string|Object }
5531+ * ` string` {string}
55765532* ` position` {integer}
55775533* ` encoding` {string}
55785534* Returns: {number} The number of bytes written.
55795535
5580- If ` string` is a plain object, it must have an own (not inherited) ` toString`
5581- function property.
5582-
55835536For detailed information, see the documentation of the asynchronous version of
55845537this API: [` fs .write (fd, string... )` ][].
55855538
0 commit comments