summaryrefslogtreecommitdiff
path: root/doc/api/buffer.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/buffer.md')
-rw-r--r--doc/api/buffer.md60
1 files changed, 30 insertions, 30 deletions
diff --git a/doc/api/buffer.md b/doc/api/buffer.md
index 6e6a4f77f5..0195c1cd26 100644
--- a/doc/api/buffer.md
+++ b/doc/api/buffer.md
@@ -302,7 +302,7 @@ It can be constructed in a variety of ways.
<!-- YAML
deprecated: v6.0.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/19524
description: Calling this constructor emits a deprecation warning when
run from code outside the `node_modules` directory.
@@ -330,7 +330,7 @@ const buf = new Buffer([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);
added: v3.0.0
deprecated: v6.0.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/19524
description: Calling this constructor emits a deprecation warning when
run from code outside the `node_modules` directory.
@@ -386,7 +386,7 @@ console.log(buf);
<!-- YAML
deprecated: v6.0.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/19524
description: Calling this constructor emits a deprecation warning when
run from code outside the `node_modules` directory.
@@ -421,7 +421,7 @@ console.log(buf2.toString());
<!-- YAML
deprecated: v6.0.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/19524
description: Calling this constructor emits a deprecation warning when
run from code outside the `node_modules` directory.
@@ -462,7 +462,7 @@ console.log(buf);
<!-- YAML
deprecated: v6.0.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/19524
description: Calling this constructor emits a deprecation warning when
run from code outside the `node_modules` directory.
@@ -499,11 +499,11 @@ console.log(buf1.toString('ascii'));
<!-- YAML
added: v5.10.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18129
description: Attempting to fill a non-zero length buffer with a zero length
buffer triggers a thrown exception.
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/17427
description: Specifying an invalid string for `fill` triggers a thrown
exception.
@@ -1171,14 +1171,14 @@ console.log(buf1.equals(buf3));
<!-- YAML
added: v0.5.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18790
description: Negative `end` values throw an `ERR_INDEX_OUT_OF_RANGE` error.
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18129
description: Attempting to fill a non-zero length buffer with a zero length
buffer triggers a thrown exception.
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/17427
description: Specifying an invalid string for `value` triggers a thrown
exception.
@@ -1505,7 +1505,7 @@ The `buf.parent` property is a deprecated alias for `buf.buffer`.
<!-- YAML
added: v0.11.15
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -1535,7 +1535,7 @@ console.log(buf.readDoubleLE(1));
<!-- YAML
added: v0.11.15
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -1564,7 +1564,7 @@ console.log(buf.readFloatLE(1));
<!-- YAML
added: v0.5.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -1594,7 +1594,7 @@ console.log(buf.readInt8(2));
<!-- YAML
added: v0.5.5
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -1626,7 +1626,7 @@ console.log(buf.readInt16LE(1));
<!-- YAML
added: v0.5.5
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -1658,7 +1658,7 @@ console.log(buf.readInt32LE(1));
<!-- YAML
added: v0.11.15
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset and
byteLength to uint32 anymore.
@@ -1691,7 +1691,7 @@ console.log(buf.readIntBE(1, 0).toString(16));
<!-- YAML
added: v0.5.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -1719,7 +1719,7 @@ console.log(buf.readUInt8(2));
<!-- YAML
added: v0.5.5
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -1753,7 +1753,7 @@ console.log(buf.readUInt16LE(2).toString(16));
<!-- YAML
added: v0.5.5
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -1783,7 +1783,7 @@ console.log(buf.readUInt32LE(1).toString(16));
<!-- YAML
added: v0.11.15
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset and
byteLength to uint32 anymore.
@@ -2100,7 +2100,7 @@ console.log(`${len} bytes: ${buf.toString('utf8', 0, len)}`);
<!-- YAML
added: v0.11.15
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -2135,7 +2135,7 @@ console.log(buf);
<!-- YAML
added: v0.11.15
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -2169,7 +2169,7 @@ console.log(buf);
<!-- YAML
added: v0.5.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -2201,7 +2201,7 @@ console.log(buf);
<!-- YAML
added: v0.5.5
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -2234,7 +2234,7 @@ console.log(buf);
<!-- YAML
added: v0.5.5
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -2267,7 +2267,7 @@ console.log(buf);
<!-- YAML
added: v0.11.15
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset and
byteLength to uint32 anymore.
@@ -2302,7 +2302,7 @@ console.log(buf);
<!-- YAML
added: v0.5.0
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -2334,7 +2334,7 @@ console.log(buf);
<!-- YAML
added: v0.5.5
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -2371,7 +2371,7 @@ console.log(buf);
<!-- YAML
added: v0.5.5
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset to
uint32 anymore.
@@ -2406,7 +2406,7 @@ console.log(buf);
<!-- YAML
added: v0.5.5
changes:
- - version: REPLACEME
+ - version: v10.0.0
pr-url: https://github.com/nodejs/node/pull/18395
description: Removed noAssert and no implicit coercion of the offset and
byteLength to uint32 anymore.