Parses a string into a CronRange.
CronRange
const parseStringRangeSeconds = parseStringRange(parseStringSecondsValue);parseStringRangeSeconds("13-10"); // { from: 13, to: 10 }parseStringRangeSeconds("INVALID"); // undefined
Curried function with parser in context.
parser
StringValueParser for CronRange.
StringValueParser
Parses a string into a
CronRange
.Example
Returns
Curried function with
parser
in context.