![]() * Bumping actions/github to 2.2.0 for GHES * Husky commit correct node modules |
||
---|---|---|
.. | ||
.npmignore | ||
LICENSE | ||
README.md | ||
component.json | ||
index.js | ||
package.json |
README.md
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