@@ 14764-14764 (lines=1) @@ | ||
14761 | return val |
|
14762 | } |
|
14763 | ||
14764 | Buffer.prototype.readIntBE = function readIntBE (offset, byteLength, noAssert) { |
|
14765 | offset = offset | 0 |
|
14766 | byteLength = byteLength | 0 |
|
14767 | if (!noAssert) checkOffset(offset, byteLength, this.length) |
|
@@ 14697-14697 (lines=1) @@ | ||
14694 | return val |
|
14695 | } |
|
14696 | ||
14697 | Buffer.prototype.readUIntBE = function readUIntBE (offset, byteLength, noAssert) { |
|
14698 | offset = offset | 0 |
|
14699 | byteLength = byteLength | 0 |
|
14700 | if (!noAssert) { |