@kabbi/react-redux-form
Version:
Create Forms Easily with React and Redux
11 lines (10 loc) • 330 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = arraysEqual;
function arraysEqual(firstArray, secondArray) {
return firstArray && secondArray && firstArray.length === secondArray.length && firstArray.every(function (item, index) {
return item === secondArray[index];
});
}