is-arrayish

WebJar for is-arrayish

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

is-arrayish
Last Version

Last Version

0.3.2
Release Date

Release Date

Type

Type

jar
Description

Description

is-arrayish
WebJar for is-arrayish
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/qix-/node-is-arrayish

Download is-arrayish

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/is-arrayish/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>is-arrayish</artifactId>
    <version>0.3.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/is-arrayish/
implementation 'org.webjars.npm:is-arrayish:0.3.2'
// https://jarcasting.com/artifacts/org.webjars.npm/is-arrayish/
implementation ("org.webjars.npm:is-arrayish:0.3.2")
'org.webjars.npm:is-arrayish:jar:0.3.2'
<dependency org="org.webjars.npm" name="is-arrayish" rev="0.3.2">
  <artifact name="is-arrayish" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='is-arrayish', version='0.3.2')
)
libraryDependencies += "org.webjars.npm" % "is-arrayish" % "0.3.2"
[org.webjars.npm/is-arrayish "0.3.2"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

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.

Versions

Version
0.3.2
0.3.1
0.2.1