xiaofu-ruoyi-vue/node_modules/data-view-buffer
ffr b5131258d8 第一次提交 2024-04-23 08:05:40 +08:00
..
.github 第一次提交 2024-04-23 08:05:40 +08:00
test 第一次提交 2024-04-22 22:43:17 +08:00
.eslintrc 第一次提交 2024-04-23 08:05:40 +08:00
.nycrc 第一次提交 2024-04-23 08:05:40 +08:00
CHANGELOG.md 第一次提交 2024-04-23 08:05:40 +08:00
LICENSE 第一次提交 2024-04-23 08:05:40 +08:00
README.md 第一次提交 2024-04-23 08:05:40 +08:00
index.d.ts 第一次提交 2024-04-23 08:05:40 +08:00
index.js 第一次提交 2024-04-23 08:05:40 +08:00
package.json 第一次提交 2024-04-23 08:05:40 +08:00
tsconfig.json 第一次提交 2024-04-23 08:05:40 +08:00

README.md

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