chensenlai 10988628a0 语音房项目初始化 | лет назад: 5 | |
---|---|---|
.. | ||
.editorconfig | лет назад: 5 | |
.istanbul.yml | лет назад: 5 | |
.npmignore | лет назад: 5 | |
.travis.yml | лет назад: 5 | |
LICENSE | лет назад: 5 | |
README.md | лет назад: 5 | |
index.js | лет назад: 5 | |
package.json | лет назад: 5 |
Determines if an object can be used like an Array
var isArrayish = require('is-arrayish');
isArrayish([]); // true
isArrayish({__proto__: []}); // true
isArrayish({}); // false
isArrayish({length:10}); // false
Licensed under the MIT License. You can find a copy of it in LICENSE.