1
0
mirror of https://gitea.com/actions/setup-python.git synced 2025-05-02 22:06:48 +08:00

12 lines
195 B
Markdown
Raw Normal View History

2019-06-26 21:12:00 -04:00
# 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
```