is-arrayish
Determines if an object can be used as an array
Last updated 9 years ago by qix .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install is-arrayish 
SYNC missed versions from official npm registry.

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.

Current Tags

  • 0.3.2                                ...           latest (8 years ago)

7 Versions

  • 0.3.2                                ...           8 years ago
  • 0.3.1                                ...           9 years ago
  • 0.3.0                                ...           10 years ago
  • 0.2.1                                ...           11 years ago
  • 0.2.0                                ...           11 years ago
  • 0.1.1                                ...           11 years ago
  • 0.1.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 2
This Week 83
This Month 116
Last Day 15
Last Week 53
Last Month 317
Dependencies (0)
None
Dev Dependencies (6)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |