source: imaps-frontend/node_modules/data-view-buffer/README.md

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[d565449]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## Example
16
17```js
18const 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## Tests
27Simply clone the repo, `npm install`, and run `npm test`
28
29[package-url]: https://npmjs.org/package/data-view-buffer
30[npm-version-svg]: https://versionbadg.es/ljharb/data-view-buffer.svg
31[deps-svg]: https://david-dm.org/ljharb/data-view-buffer.svg
32[deps-url]: https://david-dm.org/ljharb/data-view-buffer
33[dev-deps-svg]: https://david-dm.org/ljharb/data-view-buffer/dev-status.svg
34[dev-deps-url]: https://david-dm.org/ljharb/data-view-buffer#info=devDependencies
35[npm-badge-png]: https://nodei.co/npm/data-view-buffer.png?downloads=true&stars=true
36[license-image]: https://img.shields.io/npm/l/data-view-buffer.svg
37[license-url]: LICENSE
38[downloads-image]: https://img.shields.io/npm/dm/data-view-buffer.svg
39[downloads-url]: https://npm-stat.com/charts.html?package=data-view-buffer
40[codecov-image]: https://codecov.io/gh/ljharb/data-view-buffer/branch/main/graphs/badge.svg
41[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-buffer
43[actions-url]: https://github.com/ljharb/data-view-buffer/actions
Note: See TracBrowser for help on using the repository browser.