Parses CronSteps into a string.
CronSteps
const parseCronStepsSeconds = parseCronSteps([0, 59])(parseCronSecondsValue);parseCronStepsSeconds({ every: 10, start: 13 }); // "13/10"parseCronStepsSeconds({ every: 99, start: 13 }); // undefinedparseCronStepsSeconds({ every: 10, start: { from: 13, to: 10 },}); // "13-10/10"parseCronStepsSeconds({ every: 10, start: "?" }); // "?/10"
Curried function with limit on context.
limit
LimitTuple to be used when parsing CronSteps.
LimitTuple
Parses
CronSteps
into a string.Example
Returns
Curried function with
limit
on context.