Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.44.253
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
to-arraybuffer /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
45
B
-rw-r--r--
2016-01-13 02:55
.travis.yml
36
B
-rw-r--r--
2016-01-13 02:55
.zuul.yml
303
B
-rw-r--r--
2016-01-13 03:29
LICENSE
1.06
KB
-rw-r--r--
2016-01-13 01:40
README.md
940
B
-rw-r--r--
2016-01-13 04:01
index.js
881
B
-rw-r--r--
2016-01-13 03:28
package.json
1.63
KB
-rw-r--r--
2021-02-04 21:24
test.js
1.29
KB
-rw-r--r--
2016-01-13 03:07
Save
Rename
var Buffer = require('buffer').Buffer module.exports = function (buf) { // If the buffer is backed by a Uint8Array, a faster version will work if (buf instanceof Uint8Array) { // If the buffer isn't a subarray, return the underlying ArrayBuffer if (buf.byteOffset === 0 && buf.byteLength === buf.buffer.byteLength) { return buf.buffer } else if (typeof buf.buffer.slice === 'function') { // Otherwise we need to get a proper copy return buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength) } } if (Buffer.isBuffer(buf)) { // This is the slow version that will work with any Buffer // implementation (even in old browsers) var arrayCopy = new Uint8Array(buf.length) var len = buf.length for (var i = 0; i < len; i++) { arrayCopy[i] = buf[i] } return arrayCopy.buffer } else { throw new Error('Argument must be a Buffer') } }