| 113709 | return ieee754.read(this, offset, false, 52, 8); |
| 113710 | }; |
| 113711 | function checkInt(buf, value, offset, ext, max, min) { |
| 113712 | if (!Buffer.isBuffer(buf)) throw new TypeError('"buffer" argument must be a Buffer instance'); |
| 113713 | if (value > max || value < min) throw new RangeError('"value" argument is out of bounds'); |
| 113714 | if (offset + ext > buf.length) throw new RangeError("Index out of range"); |
| 113715 | } |
| 113716 | Buffer.prototype.writeUintLE = Buffer.prototype.writeUIntLE = function writeUIntLE(value, offset, byteLength5, noAssert) { |
| 113717 | value = +value; |
| 113718 | offset = offset >>> 0; |