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.144.132.48
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 /
buffer /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
node
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
_polyfill.js
4.3
KB
-rw-r--r--
2015-09-08 13:09
base64.js
1.58
KB
-rw-r--r--
2015-09-16 06:11
basic.js
1.77
KB
-rw-r--r--
2016-08-03 20:44
compare.js
1.17
KB
-rw-r--r--
2015-09-16 06:11
constructor.js
4.31
KB
-rw-r--r--
2016-08-03 20:44
from-string.js
3.25
KB
-rw-r--r--
2015-12-01 00:13
is-buffer.js
664
B
-rw-r--r--
2016-08-03 20:44
methods.js
2.82
KB
-rw-r--r--
2016-01-13 18:54
slice.js
958
B
-rw-r--r--
2015-09-16 21:23
static.js
481
B
-rw-r--r--
2016-08-03 20:44
to-string.js
6.88
KB
-rw-r--r--
2015-09-16 06:11
write.js
3.4
KB
-rw-r--r--
2016-08-03 20:44
write_infinity.js
1.14
KB
-rw-r--r--
2016-08-03 20:44
Save
Rename
if (process.env.OBJECT_IMPL) global.TYPED_ARRAY_SUPPORT = false var B = require('../').Buffer var test = require('tape') test('buffer.compare', function (t) { var b = new B(1).fill('a') var c = new B(1).fill('c') var d = new B(2).fill('aa') t.equal(b.compare(c), -1) t.equal(c.compare(d), 1) t.equal(d.compare(b), 1) t.equal(b.compare(d), -1) // static method t.equal(B.compare(b, c), -1) t.equal(B.compare(c, d), 1) t.equal(B.compare(d, b), 1) t.equal(B.compare(b, d), -1) t.end() }) test('buffer.compare argument validation', function (t) { t.throws(function () { var b = new B(1) B.compare(b, 'abc') }) t.throws(function () { var b = new B(1) B.compare('abc', b) }) t.throws(function () { var b = new B(1) b.compare('abc') }) t.end() }) test('buffer.equals', function (t) { var b = new B(5).fill('abcdf') var c = new B(5).fill('abcdf') var d = new B(5).fill('abcde') var e = new B(6).fill('abcdef') t.ok(b.equals(c)) t.ok(!c.equals(d)) t.ok(!d.equals(e)) t.end() }) test('buffer.equals argument validation', function (t) { t.throws(function () { var b = new B(1) b.equals('abc') }) t.end() })