medium-to-markdown/node_modules/array-equal
David Tesler 9bd1ed72ce first commit 2017-04-28 17:26:30 -07:00
..
.npmignore first commit 2017-04-28 17:26:30 -07:00
LICENSE first commit 2017-04-28 17:26:30 -07:00
README.md first commit 2017-04-28 17:26:30 -07:00
component.json first commit 2017-04-28 17:26:30 -07:00
index.js first commit 2017-04-28 17:26:30 -07:00
package.json first commit 2017-04-28 17:26:30 -07: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