Pibd-21_Alekseev_I.S._Inter.../IP/node_modules/is-arrayish
VanyaAlekseev ccc3e790bb lab2
2023-12-03 16:59:28 +04:00
..
.editorconfig lab2 2023-12-03 16:59:28 +04:00
.istanbul.yml lab2 2023-12-03 16:59:28 +04:00
.npmignore lab2 2023-12-03 16:59:28 +04:00
.travis.yml lab2 2023-12-03 16:59:28 +04:00
index.js lab2 2023-12-03 16:59:28 +04:00
LICENSE lab2 2023-12-03 16:59:28 +04:00
package.json lab2 2023-12-03 16:59:28 +04:00
README.md lab2 2023-12-03 16:59:28 +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.