(buf, offset, byteLength)
| 56 | const bigEndian = uInt8Float32Array[3] === 0; |
| 57 | |
| 58 | function checkBounds(buf, offset, byteLength) { |
| 59 | validateNumber(offset, 'offset'); |
| 60 | if (buf[offset] === undefined || buf[offset + byteLength] === undefined) |
| 61 | boundsError(offset, buf.length - (byteLength + 1)); |
| 62 | } |
| 63 | |
| 64 | function checkInt(value, min, max, buf, offset, byteLength) { |
| 65 | if (value > max || value < min) { |
no test coverage detected
searching dependent graphs…