odin-js-fundamentals-part-4/node_modules/is-arrayish
NetMan 65754e6d19 Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
..
.editorconfig Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
.istanbul.yml Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
.npmignore Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
.travis.yml Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
LICENSE Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
README.md Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
index.js Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
package.json Ran npm install for whole directory 2024-01-05 20:30:21 +01: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.