@@ 14746-14746 (lines=1) @@ | ||
14743 | this[offset + 3]) |
|
14744 | } |
|
14745 | ||
14746 | Buffer.prototype.readIntLE = function readIntLE (offset, byteLength, noAssert) { |
|
14747 | offset = offset | 0 |
|
14748 | byteLength = byteLength | 0 |
|
14749 | if (!noAssert) checkOffset(offset, byteLength, this.length) |
|
@@ 14682-14682 (lines=1) @@ | ||
14679 | if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length') |
|
14680 | } |
|
14681 | ||
14682 | Buffer.prototype.readUIntLE = function readUIntLE (offset, byteLength, noAssert) { |
|
14683 | offset = offset | 0 |
|
14684 | byteLength = byteLength | 0 |
|
14685 | if (!noAssert) checkOffset(offset, byteLength, this.length) |