Syllabus/themes/sandpoints/node_modules/is-arrayish
Marcell Mars fd78b9e4e3 initial sandpoints theme commit.. 2020-08-19 01:14:35 +02:00
..
.editorconfig initial sandpoints theme commit.. 2020-08-19 01:14:35 +02:00
.istanbul.yml initial sandpoints theme commit.. 2020-08-19 01:14:35 +02:00
.npmignore initial sandpoints theme commit.. 2020-08-19 01:14:35 +02:00
.travis.yml initial sandpoints theme commit.. 2020-08-19 01:14:35 +02:00
LICENSE initial sandpoints theme commit.. 2020-08-19 01:14:35 +02:00
README.md initial sandpoints theme commit.. 2020-08-19 01:14:35 +02:00
index.js initial sandpoints theme commit.. 2020-08-19 01:14:35 +02:00
package.json initial sandpoints theme commit.. 2020-08-19 01:14:35 +02:00

README.md

node-is-arrayish Travis-CI.org Build Status Coveralls.io Coverage Rating

Determines if an object can be used like an Array

Example

var isArrayish = require('is-arrayish');

isArrayish([]); // true
isArrayish({__proto__: []}); // true
isArrayish({}); // false
isArrayish({length:10}); // false

License

Licensed under the MIT License. You can find a copy of it in LICENSE.