/** * Returns a new effect that executes this one and times the execution. * * @tsplus getter effect/core/io/Effect timed */ export function timed( self: Effect ): Effect { return self.timedWith(Clock.currentTime) }