APPLE 323c2f1633 wesmiler 点什么广告 před 3 roky
..
.npmignore 323c2f1633 wesmiler 点什么广告 před 3 roky
LICENSE 323c2f1633 wesmiler 点什么广告 před 3 roky
README.md 323c2f1633 wesmiler 点什么广告 před 3 roky
component.json 323c2f1633 wesmiler 点什么广告 před 3 roky
index.js 323c2f1633 wesmiler 点什么广告 před 3 roky
package.json 323c2f1633 wesmiler 点什么广告 před 3 roky

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