import { constVoid } from "@tsplus/stdlib/data/Function" /** * Returns a new schedule that maps the output of this schedule to unit. * * @tsplus getter effect/core/io/Schedule unit */ export function unit( self: Schedule ): Schedule { return self.map(constVoid) }