(x, y)
| 59385 | return true; |
| 59386 | } |
| 59387 | function deepArrayEqual(x, y) { |
| 59388 | if (x === y) return true; |
| 59389 | var isArrayX = Array.isArray(x) || ArrayBuffer.isView(x); |
| 59390 | var isArrayY = Array.isArray(y) || ArrayBuffer.isView(y); |
| 59391 | if (isArrayX && isArrayY && x.length === y.length) { |
| 59392 | for(var i = 0; i < x.length; ++i){ |
| 59393 | if (x[i] !== y[i]) return false; |
| 59394 | } |
| 59395 | return true; |
| 59396 | } |
| 59397 | return false; |
| 59398 | } |
| 59399 | |
| 59400 | },{"@parcel/transformer-js/src/esmodule-helpers.js":"jA2du"}],"83wjI":[function(require,module,exports) { |
| 59401 | var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js"); |
nothing calls this directly
no outgoing calls
no test coverage detected