login/node_modules/array-equal
Rakesh Kumar 807bb60301
Update build files and add node_modules (#54)
* update build files

* add node_modules
2020-09-23 12:15:33 +05:30
..
.npmignore Update build files and add node_modules (#54) 2020-09-23 12:15:33 +05:30
component.json Update build files and add node_modules (#54) 2020-09-23 12:15:33 +05:30
index.js Update build files and add node_modules (#54) 2020-09-23 12:15:33 +05:30
LICENSE Update build files and add node_modules (#54) 2020-09-23 12:15:33 +05:30
package.json Update build files and add node_modules (#54) 2020-09-23 12:15:33 +05:30
README.md Update build files and add node_modules (#54) 2020-09-23 12:15:33 +05:30

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