mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-11-07 07:59:12 +00:00
| .. | ||
| .npmignore | ||
| component.json | ||
| index.js | ||
| LICENSE | ||
| package.json | ||
| 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