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

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