Parses a string into a CronSteps.
CronSteps
const parseSecondsSteps = parseStringSteps([0, 59])(parseStringSecondsValue);parseSecondsSteps("13/10"); // { every: 10, start: 13 }parseSecondsSteps("13-10/10"); // { every: 10, start: { from: 13, to: 10 } }parseSecondsSteps("?/10"); // { every: 10, start: "?" }parseSecondsSteps("13"); // undefined
Curried function with limit in context.
limit
LimitTuple for CronSteps.
LimitTuple
Parses a string into a
CronSteps
.Example
Returns
Curried function with
limit
in context.