@taquito/taquito
Version:
High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.
10 lines • 376 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.compose = void 0;
function compose(functioncomposer1, functioncomposer2) {
return function (contractAbstraction, context) {
return functioncomposer2(functioncomposer1(contractAbstraction, context), context);
};
}
exports.compose = compose;
//# sourceMappingURL=compose.js.map