EASYAIuniappNewUI/node_modules/is-arrayish
2025-02-08 18:50:38 +08:00
..
.editorconfig 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
.istanbul.yml 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
.npmignore 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
.travis.yml 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
index.js 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
LICENSE 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
package.json 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
README.md 2025/2/8第一次更新 2025-02-08 18:50:38 +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.