mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
438 B
24 lines
438 B
'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'
|
|
);
|
|
|