vvet_backend_1/node_modules/is-arrayish
Sridhar260802 5acd95bc07 first commit 2025-05-09 12:46:18 +05:30
..
LICENSE first commit 2025-05-09 12:46:18 +05:30
README.md first commit 2025-05-09 12:46:18 +05:30
index.js first commit 2025-05-09 12:46:18 +05:30
package.json first commit 2025-05-09 12:46:18 +05:30
yarn-error.log first commit 2025-05-09 12:46:18 +05: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.