djLint/docs/node_modules/is-arrayish
2021-12-14 09:57:37 +01:00
..
.editorconfig also exclude nunj and musta 2021-12-14 09:57:37 +01:00
.istanbul.yml also exclude nunj and musta 2021-12-14 09:57:37 +01:00
.npmignore also exclude nunj and musta 2021-12-14 09:57:37 +01:00
.travis.yml also exclude nunj and musta 2021-12-14 09:57:37 +01:00
index.js also exclude nunj and musta 2021-12-14 09:57:37 +01:00
LICENSE also exclude nunj and musta 2021-12-14 09:57:37 +01:00
package.json also exclude nunj and musta 2021-12-14 09:57:37 +01:00
README.md also exclude nunj and musta 2021-12-14 09:57:37 +01:00

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.