Zhouyiping 5a7c95461a first commit 3 өдөр өмнө
..
.npmignore 5a7c95461a first commit 3 өдөр өмнө
LICENSE 5a7c95461a first commit 3 өдөр өмнө
README.md 5a7c95461a first commit 3 өдөр өмнө
component.json 5a7c95461a first commit 3 өдөр өмнө
index.js 5a7c95461a first commit 3 өдөр өмнө
package.json 5a7c95461a first commit 3 өдөр өмнө

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