仲裁视频会议H5
wangqiong 37a88df277 视频会议 2 年前
..
.editorconfig 视频会议 2 年前
.istanbul.yml 视频会议 2 年前
.npmignore 视频会议 2 年前
.travis.yml 视频会议 2 年前
LICENSE 视频会议 2 年前
README.md 视频会议 2 年前
index.js 视频会议 2 年前
package.json 视频会议 2 年前

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.