mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
PR-URL: https://github.com/nodejs/node/pull/10359 Reviewed-By: Julian Duque <julianduquej@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
25 lines
438 B
JavaScript
25 lines
438 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
// testing basic functionality of readUIntLE()
|
|
|
|
const buf = Buffer.from([42, 84, 168, 127]);
|
|
const result = buf.readUIntLE(2);
|
|
|
|
assert.strictEqual(result, 168);
|
|
|
|
assert.throws(
|
|
() => {
|
|
buf.readUIntLE(5);
|
|
},
|
|
/Index out of range/
|
|
);
|
|
|
|
assert.doesNotThrow(
|
|
() => {
|
|
buf.readUIntLE(5, 0, true);
|
|
},
|
|
'readUIntLE() should not throw if noAssert is true'
|
|
);
|