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.217.230.80
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 /
is-typedarray /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE.md
1.05
KB
-rw-r--r--
2014-06-01 19:08
README.md
558
B
-rw-r--r--
2014-06-01 19:09
index.js
1016
B
-rw-r--r--
2015-05-17 01:03
package.json
1.39
KB
-rw-r--r--
2021-02-04 21:24
test.js
1.07
KB
-rw-r--r--
2014-06-01 19:10
Save
Rename
var test = require('tape') var ista = require('./') test('strict', function(t) { t.ok(ista.strict(new Int8Array), 'Int8Array') t.ok(ista.strict(new Int16Array), 'Int16Array') t.ok(ista.strict(new Int32Array), 'Int32Array') t.ok(ista.strict(new Uint8Array), 'Uint8Array') t.ok(ista.strict(new Uint16Array), 'Uint16Array') t.ok(ista.strict(new Uint32Array), 'Uint32Array') t.ok(ista.strict(new Float32Array), 'Float32Array') t.ok(ista.strict(new Float64Array), 'Float64Array') t.ok(!ista.strict(new Array), 'Array') t.ok(!ista.strict([]), '[]') t.end() }) test('loose', function(t) { t.ok(ista.loose(new Int8Array), 'Int8Array') t.ok(ista.loose(new Int16Array), 'Int16Array') t.ok(ista.loose(new Int32Array), 'Int32Array') t.ok(ista.loose(new Uint8Array), 'Uint8Array') t.ok(ista.loose(new Uint16Array), 'Uint16Array') t.ok(ista.loose(new Uint32Array), 'Uint32Array') t.ok(ista.loose(new Float32Array), 'Float32Array') t.ok(ista.loose(new Float64Array), 'Float64Array') t.ok(!ista.loose(new Array), 'Array') t.ok(!ista.loose([]), '[]') t.end() })