Zhouyiping 5a7c95461a first commit 3 dni temu
..
.npmignore 5a7c95461a first commit 3 dni temu
LICENSE 5a7c95461a first commit 3 dni temu
README.md 5a7c95461a first commit 3 dni temu
component.json 5a7c95461a first commit 3 dni temu
index.js 5a7c95461a first commit 3 dni temu
package.json 5a7c95461a first commit 3 dni temu

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