Internet_prog/3 лаба/node_modules/is-arrayish
2023-11-07 14:22:33 +04:00
..
.editorconfig 3 2023-11-07 14:22:33 +04:00
.istanbul.yml 3 2023-11-07 14:22:33 +04:00
.npmignore 3 2023-11-07 14:22:33 +04:00
.travis.yml 3 2023-11-07 14:22:33 +04:00
index.js 3 2023-11-07 14:22:33 +04:00
LICENSE 3 2023-11-07 14:22:33 +04:00
package.json 3 2023-11-07 14:22:33 +04:00
README.md 3 2023-11-07 14:22:33 +04: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.