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