PortablePosPrinterHamekara/node_modules/is-arrayish
mehranz c2686e7110 initial commit 2025-11-15 13:33:50 +03:30
..
.editorconfig initial commit 2025-11-15 13:33:50 +03:30
.istanbul.yml initial commit 2025-11-15 13:33:50 +03:30
.npmignore initial commit 2025-11-15 13:33:50 +03:30
.travis.yml initial commit 2025-11-15 13:33:50 +03:30
LICENSE initial commit 2025-11-15 13:33:50 +03:30
README.md initial commit 2025-11-15 13:33:50 +03:30
index.js initial commit 2025-11-15 13:33:50 +03:30
package.json initial commit 2025-11-15 13:33:50 +03:30

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.