(buf, offset, byteLength)
| 24 | } |
| 25 | |
| 26 | function checkBounds(buf, offset, byteLength) { |
| 27 | validateNumber(offset, 'offset'); |
| 28 | if (buf[offset] === undefined || buf[offset + byteLength] === undefined) |
| 29 | boundsError(offset, buf.length - (byteLength + 1)); |
| 30 | } |
| 31 | |
| 32 | |
| 33 | function writeU_Int8(buf, value, offset, min, max) { |
no test coverage detected