@@ 14985-14985 (lines=1) @@ | ||
14982 | return offset + byteLength |
|
14983 | } |
|
14984 | ||
14985 | Buffer.prototype.writeIntBE = function writeIntBE (value, offset, byteLength, noAssert) { |
|
14986 | value = +value |
|
14987 | offset = offset | 0 |
|
14988 | if (!noAssert) { |
|
@@ 14863-14863 (lines=1) @@ | ||
14860 | return offset + byteLength |
|
14861 | } |
|
14862 | ||
14863 | Buffer.prototype.writeUIntBE = function writeUIntBE (value, offset, byteLength, noAssert) { |
|
14864 | value = +value |
|
14865 | offset = offset | 0 |
|
14866 | byteLength = byteLength | 0 |