@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
10 lines (9 loc) • 331 B
JavaScript
import * as T from "../../../../Effect/index.mjs";
import * as RepeatEffectWith from "./repeatEffectWith.mjs";
/**
* Repeats the value using the provided schedule.
*/
export function repeatValueWith(a, schedule) {
return RepeatEffectWith.repeatEffectWith(T.succeed(a), schedule);
}
//# sourceMappingURL=repeatValueWith.mjs.map