diff --git a/doc/api/buffer.md b/doc/api/buffer.md index 356f62c31db0f6..29e61767a16982 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -2074,6 +2074,10 @@ console.log(buf.fill('zz', 'hex')); * `value` {string|Buffer|Uint8Array|integer} What to search for. @@ -2965,6 +2969,9 @@ changes: pr-url: https://github.com/nodejs/node/pull/18395 description: Removed `noAssert` and no implicit coercion of the offset and `byteLength` to `uint32` anymore. + - version: REPLACEME + pr-url: https://github.com/nodejs/node/pull/56578 + description: supports Uint8Array as `this` value --> * `offset` {integer} Number of bytes to skip before starting to read. Must @@ -3012,6 +3019,9 @@ changes: pr-url: https://github.com/nodejs/node/pull/18395 description: Removed `noAssert` and no implicit coercion of the offset and `byteLength` to `uint32` anymore. + - version: REPLACEME + pr-url: https://github.com/nodejs/node/pull/56578 + description: supports Uint8Array as `this` value --> * `offset` {integer} Number of bytes to skip before starting to read. Must @@ -3294,6 +3304,9 @@ changes: pr-url: https://github.com/nodejs/node/pull/18395 description: Removed `noAssert` and no implicit coercion of the offset and `byteLength` to `uint32` anymore. + - version: REPLACEME + pr-url: https://github.com/nodejs/node/pull/56578 + description: supports Uint8Array as `this` value --> * `offset` {integer} Number of bytes to skip before starting to read. Must @@ -3344,6 +3357,9 @@ changes: pr-url: https://github.com/nodejs/node/pull/18395 description: Removed `noAssert` and no implicit coercion of the offset and `byteLength` to `uint32` anymore. + - version: REPLACEME + pr-url: https://github.com/nodejs/node/pull/56578 + description: supports Uint8Array as `this` value --> * `offset` {integer} Number of bytes to skip before starting to read. Must @@ -3787,6 +3803,10 @@ console.log(copy); * `encoding` {string} The character encoding to use. **Default:** `'utf8'`. @@ -3925,6 +3945,10 @@ for (const value of buf) { * `string` {string} String to write to `buf`.