Bakhtina Sofya b84cb877be 1st comm | há 2 semanas atrás | |
---|---|---|
.. | ||
.github | há 2 semanas atrás | |
test | há 2 semanas atrás | |
.eslintrc | há 2 semanas atrás | |
.nycrc | há 2 semanas atrás | |
CHANGELOG.md | há 2 semanas atrás | |
LICENSE | há 2 semanas atrás | |
README.md | há 2 semanas atrás | |
index.d.ts | há 2 semanas atrás | |
index.js | há 2 semanas atrás | |
package.json | há 2 semanas atrás | |
tsconfig.json | há 2 semanas atrás |
Get the byte length of an ArrayBuffer, even in engines without a .byteLength
method.
const assert = require('assert');
const byteLength = require('array-buffer-byte-length');
assert.equal(byteLength([]), NaN, 'an array is not an ArrayBuffer, yields NaN');
assert.equal(byteLength(new ArrayBuffer(0)), 0, 'ArrayBuffer of byteLength 0, yields 0');
Simply clone the repo, npm install
, and run npm test