We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8235ffd commit e9cf657Copy full SHA for e9cf657
1 file changed
doc/api/buffer.md
@@ -1025,6 +1025,9 @@ console.log(buf.toString('ascii'));
1025
* {ArrayBuffer} The underlying `ArrayBuffer` object based on
1026
which this `Buffer` object is created.
1027
1028
+This `ArrayBuffer` is not guaranteed to correspond exactly to the original
1029
+`Buffer`. See the notes on `buf.byteOffset` for details.
1030
+
1031
```js
1032
const arrayBuffer = new ArrayBuffer(16);
1033
const buffer = Buffer.from(arrayBuffer);
0 commit comments