@mavrykdynamics/taquito
Version:
High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.
8 lines (7 loc) • 311 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.compose = void 0;
function compose(functioncomposer1, functioncomposer2) {
return (contractAbstraction, context) => functioncomposer2(functioncomposer1(contractAbstraction, context), context);
}
exports.compose = compose;