UNPKG

babel-preset-test-bundled-dependencies

Version:

Allow custom config for create-react-app without ejecting

10 lines (8 loc) 216 B
module.exports = function equal(arr1, arr2) { var length = arr1.length if (length !== arr2.length) return false for (var i = 0; i < length; i++) if (arr1[i] !== arr2[i]) return false return true }