UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

11 lines (10 loc) 343 B
// ets_tracing: off import * as CL from "../../../Clock/index.mjs"; import * as Summarized from "./summarized.mjs"; /** * Returns the sink that executes this one and times its execution. */ export function timed(self) { return Summarized.summarized_(self, CL.currentTime, (start, end) => end - start); } //# sourceMappingURL=timed.mjs.map