NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/is-arrayish
2023-09-14 14:47:11 +08:00
..
.editorconfig 111 2023-09-14 14:47:11 +08:00
.istanbul.yml 111 2023-09-14 14:47:11 +08:00
.npmignore 111 2023-09-14 14:47:11 +08:00
.travis.yml 111 2023-09-14 14:47:11 +08:00
index.js 111 2023-09-14 14:47:11 +08:00
LICENSE 111 2023-09-14 14:47:11 +08:00
package.json 111 2023-09-14 14:47:11 +08:00
README.md 111 2023-09-14 14:47:11 +08: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.