Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.142.151.216
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
node_modules /
npm /
node_modules /
isarray /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
13
B
-rw-r--r--
2021-03-10 14:36
.travis.yml
48
B
-rw-r--r--
2021-03-10 14:36
Makefile
55
B
-rw-r--r--
2021-03-10 14:36
README.md
1.85
KB
-rw-r--r--
2021-03-10 14:36
component.json
470
B
-rw-r--r--
2021-03-10 14:36
index.js
132
B
-rw-r--r--
2021-03-10 14:36
package.json
1.76
KB
-rw-r--r--
2021-03-10 14:36
test.js
320
B
-rw-r--r--
2021-03-10 14:36
Save
Rename
var isArray = require('./'); var test = require('tape'); test('is array', function(t){ t.ok(isArray([])); t.notOk(isArray({})); t.notOk(isArray(null)); t.notOk(isArray(false)); var obj = {}; obj[0] = true; t.notOk(isArray(obj)); var arr = []; arr.foo = 'bar'; t.ok(isArray(arr)); t.end(); });