File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/isarray

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

0 dirs
7 files
test.js320 B · 21 lines
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();});