rDrama/node_modules/is-arrayish
Aevann1 67a1595b9b fdsfd 2021-12-13 22:28:32 +00:00
..
.editorconfig fdsfd 2021-12-13 22:28:32 +00:00
.istanbul.yml fdsfd 2021-12-13 22:28:32 +00:00
.npmignore fdsfd 2021-12-13 22:28:32 +00:00
.travis.yml fdsfd 2021-12-13 22:28:32 +00:00
LICENSE fdsfd 2021-12-13 22:28:32 +00:00
README.md fdsfd 2021-12-13 22:28:32 +00:00
index.js fdsfd 2021-12-13 22:28:32 +00:00
package.json fdsfd 2021-12-13 22:28:32 +00: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.