Icard/angular-clarity-master(work.../node_modules/is-arrayish
realSnehal 400e0876de frontend 2024-07-16 20:25:36 +05:30
..
.editorconfig frontend 2024-07-16 20:25:36 +05:30
.istanbul.yml frontend 2024-07-16 20:25:36 +05:30
.npmignore frontend 2024-07-16 20:25:36 +05:30
.travis.yml frontend 2024-07-16 20:25:36 +05:30
LICENSE frontend 2024-07-16 20:25:36 +05:30
README.md frontend 2024-07-16 20:25:36 +05:30
index.js frontend 2024-07-16 20:25:36 +05:30
package.json frontend 2024-07-16 20:25:36 +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.