Array Equal
Check if two arrays are equal:
var equals = require('array-equal')
assert(equals([1, 2, 3], [1, 2, 3])) // => true
assert(equals([1, 2, 3], [1, 2, 3, 4])) // => false
License |
License |
---|---|
GroupId | GroupIdorg.webjars.npm |
ArtifactId | ArtifactIdarray-equal |
Last Version | Last Version1.0.0 |
Release Date | Release Date |
Type | Typejar |
Description |
Descriptionarray-equal
WebJar for array-equal
|
Project URL |
Project URL |
Source Code Management |
Source Code Management |
Filename | Size |
---|---|
array-equal-1.0.0.pom | |
array-equal-1.0.0.jar | 4 KB |
array-equal-1.0.0-sources.jar | 22 bytes |
array-equal-1.0.0-javadoc.jar | 22 bytes |
Browse |
<!-- https://jarcasting.com/artifacts/org.webjars.npm/array-equal/ -->
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>array-equal</artifactId>
<version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/array-equal/
implementation 'org.webjars.npm:array-equal:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/array-equal/
implementation ("org.webjars.npm:array-equal:1.0.0")
'org.webjars.npm:array-equal:jar:1.0.0'
<dependency org="org.webjars.npm" name="array-equal" rev="1.0.0">
<artifact name="array-equal" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='array-equal', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "array-equal" % "1.0.0"
[org.webjars.npm/array-equal "1.0.0"]
Check if two arrays are equal:
var equals = require('array-equal')
assert(equals([1, 2, 3], [1, 2, 3])) // => true
assert(equals([1, 2, 3], [1, 2, 3, 4])) // => false