You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 195 B

3 years ago
1234567891011
  1. # Array Equal
  2. Check if two arrays are equal:
  3. ```js
  4. var equals = require('array-equal')
  5. assert(equals([1, 2, 3], [1, 2, 3])) // => true
  6. assert(equals([1, 2, 3], [1, 2, 3, 4])) // => false
  7. ```