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