Codebase list node-array-equal / 058c82ca-1e6b-423b-8477-becc5de4ea60/upstream
058c82ca-1e6b-423b-8477-becc5de4ea60/upstream

Tree @058c82ca-1e6b-423b-8477-becc5de4ea60/upstream (Download .tar.gz)

# Array Equal

Check if two arrays are equal:

```js
var equals = require('array-equal')

assert(equals([1, 2, 3], [1, 2, 3])) // => true
assert(equals([1, 2, 3], [1, 2, 3, 4])) // => false
```