UNPKG

@nozbe/watermelondb

Version:

Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast

15 lines (14 loc) 311 B
"use strict"; exports.__esModule = true; exports.default = identicalArrays; function identicalArrays(left, right) { if (left.length !== right.length) { return false; } for (var i = 0, len = left.length; i < len; i += 1) { if (left[i] !== right[i]) { return false; } } return true; }