choo-shortcache
Version:
choo nanocomponent cache shortcut
15 lines (11 loc) • 350 B
JavaScript
module.exports = compare
// included for compatibility reasons only
// implements a simple shallow compare for simple values in arrays
function compare (array1, array2) {
var length = array1.length
if (length !== array2.length) return true
for (var i = 0; i < length; i++) {
if (array1[i] !== array2[i]) return true
}
return false
}