UNPKG

@lou.codes/cron

Version:

⏲️ Cron Quartz and Cron UNIX expression parser

9 lines (8 loc) 262 B
import { parseDecimal } from "@lou.codes/parsers"; import { isUndefined } from "@lou.codes/predicates"; /** * Predicate checking if given value is a number. * * @category Predicate */ export const isNumberString = input => !isUndefined(parseDecimal(input));