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