File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -808,8 +808,8 @@ A `TypeError` will be thrown if `size` is not a number.
808
808
The ` Buffer ` module pre-allocates an internal ` Buffer ` instance of
809
809
size [ ` Buffer.poolSize ` ] [ ] that is used as a pool for the fast allocation of new
810
810
` Buffer ` instances created using [ ` Buffer.allocUnsafe() ` ] [ ] , [ ` Buffer.from(array) ` ] [ ] ,
811
- and [ ` Buffer.concat() ` ] [ ] only when ` size ` is less than or equal to
812
- ` Buffer.poolSize >> 1 ` (floor of [ ` Buffer.poolSize ` ] [ ] divided by two).
811
+ and [ ` Buffer.concat() ` ] [ ] only when ` size ` is less than
812
+ ` Buffer.poolSize >>> 1 ` (floor of [ ` Buffer.poolSize ` ] [ ] divided by two).
813
813
814
814
Use of this pre-allocated internal memory pool is a key difference between
815
815
calling ` Buffer.alloc(size, fill) ` vs. ` Buffer.allocUnsafe(size).fill(fill) ` .
You can’t perform that action at this time.
0 commit comments