database-petani-mobile/node_modules/data-view-buffer
2026-02-23 16:39:35 +07:00
..
.github base commit 2026-02-23 16:39:35 +07:00
test base commit 2026-02-23 16:39:35 +07:00
.eslintrc base commit 2026-02-23 16:39:35 +07:00
.nycrc base commit 2026-02-23 16:39:35 +07:00
CHANGELOG.md base commit 2026-02-23 16:39:35 +07:00
index.d.ts base commit 2026-02-23 16:39:35 +07:00
index.js base commit 2026-02-23 16:39:35 +07:00
LICENSE base commit 2026-02-23 16:39:35 +07:00
package.json base commit 2026-02-23 16:39:35 +07:00
README.md base commit 2026-02-23 16:39:35 +07:00
tsconfig.json base commit 2026-02-23 16:39:35 +07:00

data-view-buffer Version Badge

github actions coverage License Downloads

npm badge

Get the ArrayBuffer out of a DataView, robustly.

This will work in node <= 0.10 and < 0.11.4, where there's no prototype accessor, only a nonconfigurable own property. It will also work in modern engines where DataView.prototype.buffer has been deleted after this module has loaded.

Example

const dataViewBuffer = require('data-view-buffer');
const assert = require('assert');

const ab = new ArrayBuffer(0);
const dv = new DataView(ab);
assert.equal(dataViewBuffer(dv), ab);

Tests

Simply clone the repo, npm install, and run npm test