🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 23:52:20 | PHP 8.1.34
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs11
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
isarray
📍 /opt/alt/alt-nodejs11/root/usr/lib/node_modules/npm/node_modules.bundled/isarray
🔄 Refresh
✏️
Editing: test.js
Read Only
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(); });
💾 Save Changes
❌ Cancel