(buf1, buf2)
| 26 | } |
| 27 | |
| 28 | function concat(buf1, buf2) { |
| 29 | const combined = Buffer.allocUnsafe(buf1.length + buf2.length); |
| 30 | buf1.copy(combined, 0); |
| 31 | buf2.copy(combined, buf1.length); |
| 32 | return combined; |
| 33 | } |
| 34 | |
| 35 | function noop() {} |
| 36 |
no outgoing calls
no test coverage detected
searching dependent graphs…