Blame view

node_modules/isarray/test.js 320 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  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();
  });