UNPKG

typed-utilities

Version:
21 lines (16 loc) 335 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.tapAsync = exports.tap = void 0; const tap = effect => t => { effect(t); return t; }; exports.tap = tap; const tapAsync = effect => async t => { await effect(t); return t; }; exports.tapAsync = tapAsync; //# sourceMappingURL=tap.js.map