/** * Creates a stream that executes the specified effect but emits no elements. * * @tsplus static effect/core/stream/Stream.Ops execute */ export function execute(effect: Effect): Stream { return Stream.fromEffect(effect).drain }