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.140.201.179
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
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('detect utf16 surrogate pairs', function (t) { var text = '\uD83D\uDE38' + '\uD83D\uDCAD' + '\uD83D\uDC4D' var buf = new B(text) t.equal(text, buf.toString()) t.end() }) test('detect utf16 surrogate pairs over U+20000 until U+10FFFF', function (t) { var text = '\uD842\uDFB7' + '\uD93D\uDCAD' + '\uDBFF\uDFFF' var buf = new B(text) t.equal(text, buf.toString()) t.end() }) test('replace orphaned utf16 surrogate lead code point', function (t) { var text = '\uD83D\uDE38' + '\uD83D' + '\uD83D\uDC4D' var buf = new B(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0xef, 0xbf, 0xbd, 0xf0, 0x9f, 0x91, 0x8d ])) t.end() }) test('replace orphaned utf16 surrogate trail code point', function (t) { var text = '\uD83D\uDE38' + '\uDCAD' + '\uD83D\uDC4D' var buf = new B(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0xef, 0xbf, 0xbd, 0xf0, 0x9f, 0x91, 0x8d ])) t.end() }) test('do not write partial utf16 code units', function (t) { var f = new B([0, 0, 0, 0, 0]) t.equal(f.length, 5) var size = f.write('あいうえお', 'utf16le') t.equal(size, 4) t.deepEqual(f, new B([0x42, 0x30, 0x44, 0x30, 0x00])) t.end() }) test('handle partial utf16 code points when encoding to utf8 the way node does', function (t) { var text = '\uD83D\uDE38' + '\uD83D\uDC4D' var buf = new B(8) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0xf0, 0x9f, 0x91, 0x8d ])) buf = new B(7) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0x00, 0x00, 0x00 ])) buf = new B(6) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0x00, 0x00 ])) buf = new B(5) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8, 0x00 ])) buf = new B(4) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0xf0, 0x9f, 0x98, 0xb8 ])) buf = new B(3) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x00, 0x00, 0x00 ])) buf = new B(2) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x00, 0x00 ])) buf = new B(1) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x00 ])) t.end() }) test('handle invalid utf16 code points when encoding to utf8 the way node does', function (t) { var text = 'a' + '\uDE38\uD83D' + 'b' var buf = new B(8) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd, 0xef, 0xbf, 0xbd, 0x62 ])) buf = new B(7) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd, 0xef, 0xbf, 0xbd ])) buf = new B(6) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd, 0x00, 0x00 ])) buf = new B(5) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd, 0x00 ])) buf = new B(4) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0xef, 0xbf, 0xbd ])) buf = new B(3) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0x00, 0x00 ])) buf = new B(2) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61, 0x00 ])) buf = new B(1) buf.fill(0) buf.write(text) t.deepEqual(buf, new B([ 0x61 ])) t.end() })