File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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.
808808The ` Buffer ` module pre-allocates an internal ` Buffer ` instance of
809809size [ ` Buffer.poolSize ` ] [ ] that is used as a pool for the fast allocation of new
810810` 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).
813813
814814Use of this pre-allocated internal memory pool is a key difference between
815815calling ` Buffer.alloc(size, fill) ` vs. ` Buffer.allocUnsafe(size).fill(fill) ` .
You can’t perform that action at this time.
0 commit comments