(poolSize)
| 3609 | const poolFragments = []; |
| 3610 | |
| 3611 | function allocNewPool(poolSize) { |
| 3612 | if (poolFragments.length > 0) |
| 3613 | pool = poolFragments.pop(); |
| 3614 | else |
| 3615 | pool = Buffer.allocUnsafe(poolSize); |
| 3616 | pool.used = 0; |
| 3617 | } |
| 3618 | |
| 3619 | // Check the `this.start` and `this.end` of stream. |
| 3620 | function checkPosition(pos, name) { |
no outgoing calls
no test coverage detected
searching dependent graphs…