@@ -522,7 +522,7 @@ A `TypeError` will be thrown if `size` is not a number.
522
522
523
523
* ` string ` {String}
524
524
* ` encoding ` {String} Default: ` 'utf8' `
525
- * Return : {Number}
525
+ * Returns : {Number}
526
526
527
527
Returns the actual byte length of a string. This is not the same as
528
528
[ ` String.prototype.length ` ] [ ] since that returns the number of * characters* in
@@ -546,7 +546,7 @@ added: v0.11.13
546
546
547
547
* ` buf1 ` {Buffer}
548
548
* ` buf2 ` {Buffer}
549
- * Return : {Number}
549
+ * Returns : {Number}
550
550
551
551
Compares ` buf1 ` to ` buf2 ` typically for the purpose of sorting arrays of
552
552
Buffers. This is equivalent is calling [ ` buf1.compare(buf2) ` ] [ ] .
@@ -563,7 +563,7 @@ added: v0.7.11
563
563
564
564
* ` list ` {Array} List of Buffer objects to concat
565
565
* ` totalLength ` {Number} Total length of the Buffers in the list when concatenated
566
- * Return : {Buffer}
566
+ * Returns : {Buffer}
567
567
568
568
Returns a new Buffer which is the result of concatenating all the Buffers in
569
569
the ` list ` together.
@@ -692,7 +692,7 @@ A `TypeError` will be thrown if `str` is not a string.
692
692
### Class Method: Buffer.isBuffer(obj)
693
693
694
694
* ` obj ` {Object}
695
- * Return : {Boolean}
695
+ * Returns : {Boolean}
696
696
697
697
Returns 'true' if ` obj ` is a Buffer.
698
698
@@ -702,7 +702,7 @@ added: v0.9.1
702
702
-->
703
703
704
704
* ` encoding ` {String} The encoding string to test
705
- * Return : {Boolean}
705
+ * Returns : {Boolean}
706
706
707
707
Returns true if the ` encoding ` is a valid encoding argument, or false
708
708
otherwise.
@@ -737,7 +737,7 @@ added: v0.11.13
737
737
-->
738
738
739
739
* ` otherBuffer ` {Buffer}
740
- * Return : {Number}
740
+ * Returns : {Number}
741
741
742
742
Compares two Buffer instances and returns a number indicating whether ` buf `
743
743
comes before, after, or is the same as the ` otherBuffer ` in sort order.
@@ -773,7 +773,7 @@ console.log(buf2.compare(buf3));
773
773
* ` targetStart ` {Number} Default: 0
774
774
* ` sourceStart ` {Number} Default: 0
775
775
* ` sourceEnd ` {Number} Default: ` buffer.length `
776
- * Return : {Number} The number of bytes copied.
776
+ * Returns : {Number} The number of bytes copied.
777
777
778
778
Copies data from a region of this Buffer to a region in the target Buffer even
779
779
if the target memory region overlaps with the source.
@@ -815,7 +815,7 @@ console.log(buf.toString());
815
815
added: v1.1.0
816
816
-->
817
817
818
- * Return : {Iterator}
818
+ * Returns : {Iterator}
819
819
820
820
Creates and returns an [ iterator] [ ] of ` [index, byte] ` pairs from the Buffer
821
821
contents.
@@ -840,7 +840,7 @@ added: v1.0.0
840
840
-->
841
841
842
842
* ` otherBuffer ` {Buffer}
843
- * Return : {Boolean}
843
+ * Returns : {Boolean}
844
844
845
845
Returns a boolean indicating whether ` this ` and ` otherBuffer ` have exactly the
846
846
same bytes.
@@ -864,7 +864,7 @@ added: v0.5.0
864
864
* ` value ` {String|Number}
865
865
* ` offset ` {Number} Default: 0
866
866
* ` end ` {Number} Default: ` buffer.length `
867
- * Return : {Buffer}
867
+ * Returns : {Buffer}
868
868
869
869
Fills the Buffer with the specified value. If the ` offset ` and ` end ` are not
870
870
given it will fill the entire Buffer. The method returns a reference to the
@@ -884,7 +884,7 @@ added: v1.5.0
884
884
* ` value ` {String|Buffer|Number}
885
885
* ` byteOffset ` {Number} Default: 0
886
886
* ` encoding ` {String} Default: ` 'utf8' `
887
- * Return : {Number}
887
+ * Returns : {Number}
888
888
889
889
Operates similar to [ ` Array#indexOf() ` ] [ ] in that it returns either the
890
890
starting index position of ` value ` in Buffer or ` -1 ` if the Buffer does not
@@ -922,7 +922,7 @@ utf16Buffer.indexOf('\u03a3', -4, 'ucs2');
922
922
added: v1.1.0
923
923
-->
924
924
925
- * Return : {Iterator}
925
+ * Returns : {Iterator}
926
926
927
927
Creates and returns an [ iterator] [ ] of Buffer keys (indices).
928
928
@@ -980,7 +980,7 @@ console.log(buf.length);
980
980
981
981
* ` offset ` {Number} ` 0 <= offset <= buf.length - 8 `
982
982
* ` noAssert ` {Boolean} Default: false
983
- * Return : {Number}
983
+ * Returns : {Number}
984
984
985
985
Reads a 64-bit double from the Buffer at the specified ` offset ` with specified
986
986
endian format (` readDoubleBE() ` returns big endian, ` readDoubleLE() ` returns
@@ -1008,7 +1008,7 @@ buf.readDoubleLE(1, true); // Warning: reads passed end of buffer!
1008
1008
1009
1009
* ` offset ` {Number} ` 0 <= offset <= buf.length - 4 `
1010
1010
* ` noAssert ` {Boolean} Default: false
1011
- * Return : {Number}
1011
+ * Returns : {Number}
1012
1012
1013
1013
Reads a 32-bit float from the Buffer at the specified ` offset ` with specified
1014
1014
endian format (` readFloatBE() ` returns big endian, ` readFloatLE() ` returns
@@ -1035,7 +1035,7 @@ buf.readFloatLE(1, true); // Warning: reads passed end of buffer!
1035
1035
1036
1036
* ` offset ` {Number} ` 0 <= offset <= buf.length - 1 `
1037
1037
* ` noAssert ` {Boolean} Default: false
1038
- * Return : {Number}
1038
+ * Returns : {Number}
1039
1039
1040
1040
Reads a signed 8-bit integer from the Buffer at the specified ` offset ` .
1041
1041
@@ -1058,7 +1058,7 @@ buf.readInt8(1);
1058
1058
1059
1059
* ` offset ` {Number} ` 0 <= offset <= buf.length - 2 `
1060
1060
* ` noAssert ` {Boolean} Default: false
1061
- * Return : {Number}
1061
+ * Returns : {Number}
1062
1062
1063
1063
Reads a signed 16-bit integer from the Buffer at the specified ` offset ` with
1064
1064
the specified endian format (` readInt16BE() ` returns big endian,
@@ -1083,7 +1083,7 @@ buf.readInt16LE(1);
1083
1083
1084
1084
* ` offset ` {Number} ` 0 <= offset <= buf.length - 4 `
1085
1085
* ` noAssert ` {Boolean} Default: false
1086
- * Return : {Number}
1086
+ * Returns : {Number}
1087
1087
1088
1088
Reads a signed 32-bit integer from the Buffer at the specified ` offset ` with
1089
1089
the specified endian format (` readInt32BE() ` returns big endian,
@@ -1114,7 +1114,7 @@ added: v1.0.0
1114
1114
* ` offset ` {Number} ` 0 <= offset <= buf.length - byteLength `
1115
1115
* ` byteLength ` {Number} ` 0 < byteLength <= 6 `
1116
1116
* ` noAssert ` {Boolean} Default: false
1117
- * Return : {Number}
1117
+ * Returns : {Number}
1118
1118
1119
1119
Reads ` byteLength ` number of bytes from the Buffer at the specified ` offset `
1120
1120
and interprets the result as a two's complement signed value. Supports up to 48
@@ -1138,7 +1138,7 @@ Setting `noAssert` to `true` skips validation of the `offset`. This allows the
1138
1138
1139
1139
* ` offset ` {Number} ` 0 <= offset <= buf.length - 1 `
1140
1140
* ` noAssert ` {Boolean} Default: false
1141
- * Return : {Number}
1141
+ * Returns : {Number}
1142
1142
1143
1143
Reads an unsigned 8-bit integer from the Buffer at the specified ` offset ` .
1144
1144
@@ -1159,7 +1159,7 @@ buf.readUInt8(1);
1159
1159
1160
1160
* ` offset ` {Number} ` 0 <= offset <= buf.length - 2 `
1161
1161
* ` noAssert ` {Boolean} Default: false
1162
- * Return : {Number}
1162
+ * Returns : {Number}
1163
1163
1164
1164
Reads an unsigned 16-bit integer from the Buffer at the specified ` offset ` with
1165
1165
specified endian format (` readUInt16BE() ` returns big endian,
@@ -1192,7 +1192,7 @@ buf.readUInt16LE(2);
1192
1192
1193
1193
* ` offset ` {Number} ` 0 <= offset <= buf.length - 4 `
1194
1194
* ` noAssert ` {Boolean} Default: false
1195
- * Return : {Number}
1195
+ * Returns : {Number}
1196
1196
1197
1197
Reads an unsigned 32-bit integer from the Buffer at the specified ` offset ` with
1198
1198
specified endian format (` readUInt32BE() ` returns big endian,
@@ -1221,7 +1221,7 @@ added: v1.0.0
1221
1221
* ` offset ` {Number} ` 0 <= offset <= buf.length - byteLength `
1222
1222
* ` byteLength ` {Number} ` 0 < byteLength <= 6 `
1223
1223
* ` noAssert ` {Boolean} Default: false
1224
- * Return : {Number}
1224
+ * Returns : {Number}
1225
1225
1226
1226
Reads ` byteLength ` number of bytes from the Buffer at the specified ` offset `
1227
1227
and interprets the result as an unsigned integer. Supports up to 48
@@ -1245,7 +1245,7 @@ Setting `noAssert` to `true` skips validation of the `offset`. This allows the
1245
1245
1246
1246
* ` start ` {Number} Default: 0
1247
1247
* ` end ` {Number} Default: ` buffer.length `
1248
- * Return : {Buffer}
1248
+ * Returns : {Buffer}
1249
1249
1250
1250
Returns a new Buffer that references the same memory as the original, but
1251
1251
offset and cropped by the ` start ` and ` end ` indices.
@@ -1290,7 +1290,7 @@ buf.slice(-5, -2).toString();
1290
1290
* ` encoding ` {String} Default: ` 'utf8' `
1291
1291
* ` start ` {Number} Default: 0
1292
1292
* ` end ` {Number} Default: ` buffer.length `
1293
- * Return : {String}
1293
+ * Returns : {String}
1294
1294
1295
1295
Decodes and returns a string from the Buffer data using the specified
1296
1296
character set ` encoding ` .
@@ -1315,7 +1315,7 @@ buf.toString(undefined,0,5);
1315
1315
added: v0.9.2
1316
1316
-->
1317
1317
1318
- * Return : {Object}
1318
+ * Returns : {Object}
1319
1319
1320
1320
Returns a JSON representation of the Buffer instance. [ ` JSON.stringify() ` ] [ ]
1321
1321
implicitly calls this function when stringifying a Buffer instance.
@@ -1344,7 +1344,7 @@ console.log(copy.toString());
1344
1344
added: v1.1.0
1345
1345
-->
1346
1346
1347
- * Return : {Iterator}
1347
+ * Returns : {Iterator}
1348
1348
1349
1349
Creates and returns an [ iterator] [ ] for Buffer values (bytes). This function is
1350
1350
called automatically when the Buffer is used in a ` for..of ` statement.
@@ -1380,7 +1380,7 @@ for (var value of buf) {
1380
1380
* ` offset ` {Number} Default: 0
1381
1381
* ` length ` {Number} Default: ` buffer.length - offset `
1382
1382
* ` encoding ` {String} Default: ` 'utf8' `
1383
- * Return : {Number} Numbers of bytes written
1383
+ * Returns : {Number} Numbers of bytes written
1384
1384
1385
1385
Writes ` string ` to the Buffer at ` offset ` using the given ` encoding ` .
1386
1386
The ` length ` parameter is the number of bytes to write. If the Buffer did not
@@ -1401,7 +1401,7 @@ console.log(`${len} bytes: ${buf.toString('utf8', 0, len)}`);
1401
1401
* ` value ` {Number} Bytes to be written to Buffer
1402
1402
* ` offset ` {Number} ` 0 <= offset <= buf.length - 8 `
1403
1403
* ` noAssert ` {Boolean} Default: false
1404
- * Return : {Number} The offset plus the number of written bytes
1404
+ * Returns : {Number} The offset plus the number of written bytes
1405
1405
1406
1406
Writes ` value ` to the Buffer at the specified ` offset ` with specified endian
1407
1407
format (` writeDoubleBE() ` writes big endian, ` writeDoubleLE() ` writes little
@@ -1434,7 +1434,7 @@ console.log(buf);
1434
1434
* ` value ` {Number} Bytes to be written to Buffer
1435
1435
* ` offset ` {Number} ` 0 <= offset <= buf.length - 4 `
1436
1436
* ` noAssert ` {Boolean} Default: false
1437
- * Return : {Number} The offset plus the number of written bytes
1437
+ * Returns : {Number} The offset plus the number of written bytes
1438
1438
1439
1439
Writes ` value ` to the Buffer at the specified ` offset ` with specified endian
1440
1440
format (` writeFloatBE() ` writes big endian, ` writeFloatLE() ` writes little
@@ -1466,7 +1466,7 @@ console.log(buf);
1466
1466
* ` value ` {Number} Bytes to be written to Buffer
1467
1467
* ` offset ` {Number} ` 0 <= offset <= buf.length - 1 `
1468
1468
* ` noAssert ` {Boolean} Default: false
1469
- * Return : {Number} The offset plus the number of written bytes
1469
+ * Returns : {Number} The offset plus the number of written bytes
1470
1470
1471
1471
Writes ` value ` to the Buffer at the specified ` offset ` . The ` value ` should be a
1472
1472
valid signed 8-bit integer. Behavior is not defined when ` value ` is anything
@@ -1493,7 +1493,7 @@ console.log(buf);
1493
1493
* ` value ` {Number} Bytes to be written to Buffer
1494
1494
* ` offset ` {Number} ` 0 <= offset <= buf.length - 2 `
1495
1495
* ` noAssert ` {Boolean} Default: false
1496
- * Return : {Number} The offset plus the number of written bytes
1496
+ * Returns : {Number} The offset plus the number of written bytes
1497
1497
1498
1498
Writes ` value ` to the Buffer at the specified ` offset ` with specified endian
1499
1499
format (` writeInt16BE() ` writes big endian, ` writeInt16LE() ` writes little
@@ -1521,7 +1521,7 @@ console.log(buf);
1521
1521
* ` value ` {Number} Bytes to be written to Buffer
1522
1522
* ` offset ` {Number} ` 0 <= offset <= buf.length - 4 `
1523
1523
* ` noAssert ` {Boolean} Default: false
1524
- * Return : {Number} The offset plus the number of written bytes
1524
+ * Returns : {Number} The offset plus the number of written bytes
1525
1525
1526
1526
Writes ` value ` to the Buffer at the specified ` offset ` with specified endian
1527
1527
format (` writeInt32BE() ` writes big endian, ` writeInt32LE() ` writes little
@@ -1553,7 +1553,7 @@ added: v1.0.0
1553
1553
* ` offset ` {Number} ` 0 <= offset <= buf.length - byteLength `
1554
1554
* ` byteLength ` {Number} ` 0 < byteLength <= 6 `
1555
1555
* ` noAssert ` {Boolean} Default: false
1556
- * Return : {Number} The offset plus the number of written bytes
1556
+ * Returns : {Number} The offset plus the number of written bytes
1557
1557
1558
1558
Writes ` value ` to the Buffer at the specified ` offset ` and ` byteLength ` .
1559
1559
Supports up to 48 bits of accuracy. For example:
@@ -1582,7 +1582,7 @@ Behavior is not defined when `value` is anything other than an integer.
1582
1582
* ` value ` {Number} Bytes to be written to Buffer
1583
1583
* ` offset ` {Number} ` 0 <= offset <= buf.length - 1 `
1584
1584
* ` noAssert ` {Boolean} Default: false
1585
- * Return : {Number} The offset plus the number of written bytes
1585
+ * Returns : {Number} The offset plus the number of written bytes
1586
1586
1587
1587
Writes ` value ` to the Buffer at the specified ` offset ` . The ` value ` should be a
1588
1588
valid unsigned 8-bit integer. Behavior is not defined when ` value ` is anything
@@ -1612,7 +1612,7 @@ console.log(buf);
1612
1612
* ` value ` {Number} Bytes to be written to Buffer
1613
1613
* ` offset ` {Number} ` 0 <= offset <= buf.length - 2 `
1614
1614
* ` noAssert ` {Boolean} Default: false
1615
- * Return : {Number} The offset plus the number of written bytes
1615
+ * Returns : {Number} The offset plus the number of written bytes
1616
1616
1617
1617
Writes ` value ` to the Buffer at the specified ` offset ` with specified endian
1618
1618
format (` writeUInt16BE() ` writes big endian, ` writeUInt16LE() ` writes little
@@ -1647,7 +1647,7 @@ console.log(buf);
1647
1647
* ` value ` {Number} Bytes to be written to Buffer
1648
1648
* ` offset ` {Number} ` 0 <= offset <= buf.length - 4 `
1649
1649
* ` noAssert ` {Boolean} Default: false
1650
- * Return : {Number} The offset plus the number of written bytes
1650
+ * Returns : {Number} The offset plus the number of written bytes
1651
1651
1652
1652
Writes ` value ` to the Buffer at the specified ` offset ` with specified endian
1653
1653
format (` writeUInt32BE() ` writes big endian, ` writeUInt32LE() ` writes little
@@ -1681,7 +1681,7 @@ console.log(buf);
1681
1681
* ` offset ` {Number} ` 0 <= offset <= buf.length - byteLength `
1682
1682
* ` byteLength ` {Number} ` 0 < byteLength <= 6 `
1683
1683
* ` noAssert ` {Boolean} Default: false
1684
- * Return : {Number} The offset plus the number of written bytes
1684
+ * Returns : {Number} The offset plus the number of written bytes
1685
1685
1686
1686
Writes ` value ` to the Buffer at the specified ` offset ` and ` byteLength ` .
1687
1687
Supports up to 48 bits of accuracy. For example:
0 commit comments