@@ -63,8 +63,8 @@ differently based on what arguments are provided:
63
63
a fast-but-uninitialized ` Buffer ` versus creating a slower-but-safer ` Buffer ` .
64
64
* Passing a string, array, or ` Buffer ` as the first argument copies the
65
65
passed object's data into the ` Buffer ` .
66
- * Passing an [ ` ArrayBuffer ` ] returns a ` Buffer ` that shares allocated memory with
67
- the given [ ` ArrayBuffer ` ] .
66
+ * Passing an [ ` ArrayBuffer ` ] or a [ ` SharedArrayBuffer ` ] returns a ` Buffer ` that
67
+ shares allocated memory with the given array buffer .
68
68
69
69
Because the behavior of ` new Buffer() ` changes significantly based on the type
70
70
of value passed as the first argument, applications that do not properly
@@ -350,16 +350,16 @@ deprecated: v6.0.0
350
350
> [ ` Buffer.from(arrayBuffer[, byteOffset [, length]]) ` ] [ `Buffer.from(arrayBuffer)` ]
351
351
> instead.
352
352
353
- * ` arrayBuffer ` {ArrayBuffer} An [ ` ArrayBuffer ` ] or the ` .buffer ` property of a
354
- [ ` TypedArray ` ] .
353
+ * ` arrayBuffer ` {ArrayBuffer|SharedArrayBuffer } An [ ` ArrayBuffer ` ] ,
354
+ [ ` SharedArrayBuffer ` ] or the ` .buffer ` property of a [ ` TypedArray ` ] .
355
355
* ` byteOffset ` {integer} Index of first byte to expose. ** Default:** ` 0 `
356
356
* ` length ` {integer} Number of bytes to expose.
357
357
** Default:** ` arrayBuffer.length - byteOffset `
358
358
359
- This creates a view of the [ ` ArrayBuffer ` ] without copying the underlying
360
- memory. For example, when passed a reference to the ` .buffer ` property of a
361
- [ ` TypedArray ` ] instance, the newly created ` Buffer ` will share the same
362
- allocated memory as the [ ` TypedArray ` ] .
359
+ This creates a view of the [ ` ArrayBuffer ` ] or [ ` SharedArrayBuffer ` ] without
360
+ copying the underlying memory. For example, when passed a reference to the
361
+ ` .buffer ` property of a [ ` TypedArray ` ] instance, the newly created ` Buffer ` will
362
+ share the same allocated memory as the [ ` TypedArray ` ] .
363
363
364
364
The optional ` byteOffset ` and ` length ` arguments specify a memory range within
365
365
the ` arrayBuffer ` that will be shared by the ` Buffer ` .
@@ -611,8 +611,8 @@ A `TypeError` will be thrown if `size` is not a number.
611
611
added: v0.1.90
612
612
-->
613
613
614
- * ` string ` {string|Buffer|TypedArray|DataView|ArrayBuffer} A value to
615
- calculate the length of.
614
+ * ` string ` {string|Buffer|TypedArray|DataView|ArrayBuffer|SharedArrayBuffer } A
615
+ value to calculate the length of.
616
616
* ` encoding ` {string} If ` string ` is a string, this is its encoding.
617
617
** Default:** ` 'utf8' `
618
618
* Returns: {integer} The number of bytes contained within ` string ` .
@@ -635,8 +635,8 @@ console.log(`${str}: ${str.length} characters, ` +
635
635
` ${ Buffer .byteLength (str, ' utf8' )} bytes` );
636
636
```
637
637
638
- When ` string ` is a ` Buffer ` /[ ` DataView ` ] /[ ` TypedArray ` ] /[ ` ArrayBuffer ` ] , the
639
- actual byte length is returned.
638
+ When ` string ` is a ` Buffer ` /[ ` DataView ` ] /[ ` TypedArray ` ] /[ ` ArrayBuffer ` ] /
639
+ [ ` SharedArrayBuffer ` ] , the actual byte length is returned.
640
640
641
641
Otherwise, converts to ` String ` and returns the byte length of string.
642
642
@@ -733,8 +733,8 @@ A `TypeError` will be thrown if `array` is not an `Array`.
733
733
added: v5.10.0
734
734
-->
735
735
736
- * ` arrayBuffer ` {ArrayBuffer} An [ ` ArrayBuffer ` ] or the ` .buffer ` property of a
737
- [ ` TypedArray ` ] .
736
+ * ` arrayBuffer ` {ArrayBuffer|SharedArrayBuffer } An [ ` ArrayBuffer ` ] ,
737
+ [ ` SharedArrayBuffer ` ] , or the ` .buffer ` property of a [ ` TypedArray ` ] .
738
738
* ` byteOffset ` {integer} Index of first byte to expose. ** Default:** ` 0 `
739
739
* ` length ` {integer} Number of bytes to expose.
740
740
** Default:** ` arrayBuffer.length - byteOffset `
@@ -778,7 +778,8 @@ const buf = Buffer.from(ab, 0, 2);
778
778
console .log (buf .length );
779
779
```
780
780
781
- A ` TypeError ` will be thrown if ` arrayBuffer ` is not an [ ` ArrayBuffer ` ] .
781
+ A ` TypeError ` will be thrown if ` arrayBuffer ` is not an [ ` ArrayBuffer ` ] or a
782
+ [ ` SharedArrayBuffer ` ] .
782
783
783
784
### Class Method: Buffer.from(buffer)
784
785
<!-- YAML
@@ -2544,6 +2545,7 @@ console.log(buf);
2544
2545
[ RFC1345 ] : https://tools.ietf.org/html/rfc1345
2545
2546
[ RFC4648, Section 5 ] : https://tools.ietf.org/html/rfc4648#section-5
2546
2547
[ `String.prototype.length` ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length
2548
+ [ `SharedArrayBuffer` ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
2547
2549
[ `String#indexOf()` ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf
2548
2550
[ `String#lastIndexOf()` ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf
2549
2551
[ `TypedArray` ] : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
0 commit comments