hexo/node_modules/is-arrayish
jkjoy 9a9cb42f53 20231003 update 2023-10-03 11:14:36 +08:00
..
.editorconfig 20231003 update 2023-10-03 11:14:36 +08:00
.istanbul.yml 20231003 update 2023-10-03 11:14:36 +08:00
.npmignore 20231003 update 2023-10-03 11:14:36 +08:00
.travis.yml 20231003 update 2023-10-03 11:14:36 +08:00
LICENSE 20231003 update 2023-10-03 11:14:36 +08:00
README.md 20231003 update 2023-10-03 11:14:36 +08:00
index.js 20231003 update 2023-10-03 11:14:36 +08:00
package.json 20231003 update 2023-10-03 11:14:36 +08:00

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.