CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
README.md44 linesDownload Raw Back to data-view-buffer
1# data-view-buffer <sup>[![Version Badge][npm-version-svg]][package-url]</sup>2 3[![github actions][actions-image]][actions-url]4[![coverage][codecov-image]][codecov-url]5[![License][license-image]][license-url]6[![Downloads][downloads-image]][downloads-url]7 8[![npm badge][npm-badge-png]][package-url]9 10Get the ArrayBuffer out of a DataView, robustly.11 12This will work in node <= 0.10 and < 0.11.4, where there's no prototype accessor, only a nonconfigurable own property.13It will also work in modern engines where `DataView.prototype.buffer` has been deleted after this module has loaded.14 15## Example16 17```js18const dataViewBuffer = require('data-view-buffer');19const assert = require('assert');20 21const ab = new ArrayBuffer(0);22const dv = new DataView(ab);23assert.equal(dataViewBuffer(dv), ab);24```25 26## Tests27Simply clone the repo, `npm install`, and run `npm test`28 29[package-url]: https://npmjs.org/package/data-view-buffer30[npm-version-svg]: https://versionbadg.es/ljharb/data-view-buffer.svg31[deps-svg]: https://david-dm.org/ljharb/data-view-buffer.svg32[deps-url]: https://david-dm.org/ljharb/data-view-buffer33[dev-deps-svg]: https://david-dm.org/ljharb/data-view-buffer/dev-status.svg34[dev-deps-url]: https://david-dm.org/ljharb/data-view-buffer#info=devDependencies35[npm-badge-png]: https://nodei.co/npm/data-view-buffer.png?downloads=true&stars=true36[license-image]: https://img.shields.io/npm/l/data-view-buffer.svg37[license-url]: LICENSE38[downloads-image]: https://img.shields.io/npm/dm/data-view-buffer.svg39[downloads-url]: https://npm-stat.com/charts.html?package=data-view-buffer40[codecov-image]: https://codecov.io/gh/ljharb/data-view-buffer/branch/main/graphs/badge.svg41[codecov-url]: https://app.codecov.io/gh/ljharb/data-view-buffer/42[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/data-view-buffer43[actions-url]: https://github.com/ljharb/data-view-buffer/actions44