chatty-pub/node_modules/array-equal
كارل مبارك 374620645c initial commit
2021-06-26 13:12:56 +02:00
..
.npmignore initial commit 2021-06-26 13:12:56 +02:00
component.json initial commit 2021-06-26 13:12:56 +02:00
index.js initial commit 2021-06-26 13:12:56 +02:00
LICENSE initial commit 2021-06-26 13:12:56 +02:00
package.json initial commit 2021-06-26 13:12:56 +02:00
README.md initial commit 2021-06-26 13:12:56 +02: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