xiaofu-ruoyi-vue/node_modules/is-arrayish
ffr b5131258d8 第一次提交 2024-04-23 08:05:40 +08:00
..
.editorconfig 第一次提交 2024-04-23 08:05:40 +08:00
.istanbul.yml 第一次提交 2024-04-23 08:05:40 +08:00
.npmignore 第一次提交 2024-04-23 08:05:40 +08:00
.travis.yml 第一次提交 2024-04-23 08:05:40 +08:00
LICENSE 第一次提交 2024-04-23 08:05:40 +08:00
README.md 第一次提交 2024-04-22 22:43:17 +08:00
index.js 第一次提交 2024-04-23 08:05:40 +08:00
package.json 第一次提交 2024-04-23 08:05:40 +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.