qauMaWeb/node_modules/is-arrayish
赵向宇 4b9d619652 初始化 2024-10-13 18:02:27 +08:00
..
.editorconfig 初始化 2024-10-13 18:02:27 +08:00
.istanbul.yml 初始化 2024-10-13 18:02:27 +08:00
.npmignore 初始化 2024-10-13 18:02:27 +08:00
.travis.yml 初始化 2024-10-13 18:02:27 +08:00
LICENSE 初始化 2024-10-13 18:02:27 +08:00
README.md 初始化 2024-10-13 18:02:27 +08:00
index.js 初始化 2024-10-13 18:02:27 +08:00
package.json 初始化 2024-10-13 18:02:27 +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.