tree: 425f182e250ab8d2e10e82fb9980ac37325bcf0d [path history] [tgz]
  1. .npmignore
  2. component.json
  3. index.js
  4. LICENSE
  5. package.json
  6. README.md
node_modules/array-equal/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