solidity-docgen
Version:
Documentation generator for Solidity smart contracts.
8 lines • 312 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.arraysEqual = void 0;
function arraysEqual(a, b, mapFn = (x) => x) {
return a.length === b.length && a.every((x, i) => mapFn(x) === mapFn(b[i]));
}
exports.arraysEqual = arraysEqual;
//# sourceMappingURL=arrays-equal.js.map
;