Pibd-21_Ievlewa_M.D._Intern.../node_modules/is-arrayish
2023-12-03 18:52:09 +03:00
..
.editorconfig Лабораторная 2 2023-12-03 18:52:09 +03:00
.istanbul.yml Лабораторная 2 2023-12-03 18:52:09 +03:00
.npmignore Лабораторная 2 2023-12-03 18:52:09 +03:00
.travis.yml Лабораторная 2 2023-12-03 18:52:09 +03:00
index.js Лабораторная 2 2023-12-03 18:52:09 +03:00
LICENSE Лабораторная 2 2023-12-03 18:52:09 +03:00
package.json Лабораторная 2 2023-12-03 18:52:09 +03:00
README.md Лабораторная 2 2023-12-03 18:52:09 +03: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.