1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-26 01:26:47 +00:00
notes/node_modules/isobject/node_modules/isarray/test.js

21 lines
320 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
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();
});