UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

12 lines (7 loc) 195 B
# 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 ```