All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.isarray.test.js Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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();
});





© 2015 - 2025 Weber Informatics LLC | Privacy Policy