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
437 B
24 lines
437 B
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
// testing basic functionality of readUIntBE()
|
|
|
|
const buf = Buffer.from([42, 84, 168, 127]);
|
|
const result = buf.readUIntBE(2);
|
|
|
|
assert.strictEqual(result, 84);
|
|
|
|
assert.throws(
|
|
() => {
|
|
buf.readUIntBE(5);
|
|
},
|
|
/Index out of range/
|
|
);
|
|
|
|
assert.doesNotThrow(
|
|
() => {
|
|
buf.readUIntBE(5, 0, true);
|
|
},
|
|
'readUIntBE() should not throw if noAssert is true'
|
|
);
|
|
|