4
0
Fork 0
mirror of https://github.com/actions/setup-python.git synced 2025-11-08 05:56:56 +00:00
setup-python/node_modules/array-equal
Stephen Franceschelli ec0a863019 Fix.
2019-07-30 13:16:01 -04:00
..
.npmignore Fix. 2019-07-30 13:16:01 -04:00
component.json Fix. 2019-07-30 13:16:01 -04:00
index.js Fix. 2019-07-30 13:16:01 -04:00
LICENSE Fix. 2019-07-30 13:16:01 -04:00
package.json Fix. 2019-07-30 13:16:01 -04:00
README.md Fix. 2019-07-30 13:16:01 -04:00

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