NewsBlur/node/node_modules/array-equal
2019-04-13 16:45:13 -04:00
..
.npmignore
component.json
index.js
LICENSE
package.json Upgrading node_modules 2019-04-13 16:45:13 -04:00
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