htc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
..
.github 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
test 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
.eslintrc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
.nycrc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
CHANGELOG.md 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
LICENSE 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
README.md 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
index.d.ts 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
index.js 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
package.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ
tsconfig.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 mēneši atpakaļ

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