(buf, offset)
| 8 | const TypedArrayFill = Object.getPrototypeOf(Uint8Array.prototype).fill; |
| 9 | |
| 10 | function readUInt32BE(buf, offset) { |
| 11 | return (buf[offset++] * 16777216) |
| 12 | + (buf[offset++] * 65536) |
| 13 | + (buf[offset++] * 256) |
| 14 | + buf[offset]; |
| 15 | } |
| 16 | |
| 17 | function bufferCopy(src, dest, srcStart, srcEnd, destStart) { |
| 18 | if (!destStart) |
no outgoing calls
no test coverage detected
searching dependent graphs…