XuelesszzZ 94af2b8e7b 6-30-5 | 1 年之前 | |
---|---|---|
.. | ||
.npmignore | 1 年之前 | |
LICENSE | 1 年之前 | |
README.md | 1 年之前 | |
component.json | 1 年之前 | |
index.js | 1 年之前 | |
package.json | 1 年之前 |
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