contract-query/frontend/node_modules/data-view-buffer
2025-08-14 15:03:33 -05:00
..
.github initial commit 2025-08-14 15:03:33 -05:00
test initial commit 2025-08-14 15:03:33 -05:00
.eslintrc initial commit 2025-08-14 15:03:33 -05:00
.nycrc initial commit 2025-08-14 15:03:33 -05:00
CHANGELOG.md initial commit 2025-08-14 15:03:33 -05:00
index.d.ts initial commit 2025-08-14 15:03:33 -05:00
index.js initial commit 2025-08-14 15:03:33 -05:00
LICENSE initial commit 2025-08-14 15:03:33 -05:00
package.json initial commit 2025-08-14 15:03:33 -05:00
README.md initial commit 2025-08-14 15:03:33 -05:00
tsconfig.json initial commit 2025-08-14 15:03:33 -05: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