mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 00:11:20 +00:00

PR-URL: https://github.com/nodejs/node/pull/20190 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
20 lines
319 B
JavaScript
20 lines
319 B
JavaScript
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();
|
|
});
|