UNPKG

is-array-like

Version:

Checks if the given value is an array or array-like object.

51 lines (50 loc) 1.22 kB
{ "name": "is-array-like", "version": "1.1.2", "description": "Checks if the given value is an array or array-like object.", "main": "index.js", "scripts": { "lint": "jshint index.js", "pretest": "npm run lint", "test": "mocha -R spec", "test:cov": "rm -rf ./test/coverage && istanbul cover _mocha --dir ./test/coverage -- -R spec", "test:rpt": "npm run test:cov && coveralls < ./test/coverage/lcov.info", "prepublish": "npm test" }, "keywords": [ "is", "check", "checks", "detect", "type", "array", "array-like", "arguments", "nodeList" ], "author": { "name": "bubkoo", "email": "bubkoo.wy@gmail.com" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/gearcase/is-array-like.git" }, "bugs": { "url": "https://github.com/gearcase/is-array-like/issues" }, "homepage": "https://github.com/gearcase/is-array-like#readme", "devDependencies": { "jshint": "^2.9.1", "chai": "^3.5.0", "coveralls": "^2.11.9", "istanbul": "^0.4.2", "mocha": "^2.4.5" }, "dependencies": { "is-array": "^1.0.1", "is-function": "^1.0.1", "is-window": "^1.0.1" } }