(buffers)
| 129 | // This helper function helps us postpone concatenating buffers, which |
| 130 | // would create intermediate buffer objects, |
| 131 | function lengthBuffers(buffers) { |
| 132 | return buffers.reduce((acc, buffer) => acc + buffer.length, 0) |
| 133 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…