ignore bin

This commit is contained in:
fxy060608
2018-11-18 16:17:04 +08:00
parent d7f7e5ce2b
commit 1949b2ba72
711 changed files with 1 additions and 50672 deletions
-20
View File
@@ -1,20 +0,0 @@
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();
});