UNPKG

@lou.codes/cron

Version:

⏲️ Cron Quartz and Cron UNIX expression parser

31 lines (30 loc) 770 B
/** * Name of a minute field in the object representation of a cron expression. * * @category Cron Object */ export const MINUTE_NAME = "minute"; /** * Name of a hour field in the object representation of a cron expression. * * @category Cron Object */ export const HOUR_NAME = "hour"; /** * Name of a day of month field in the object representation of a cron expression. * * @category Cron Object */ export const DAY_OF_MONTH_NAME = "dayOfMonth"; /** * Name of a month field in the object representation of a cron expression. * * @category Cron Object */ export const MONTH_NAME = "month"; /** * Name of a day of week field in the object representation of a cron expression. * * @category Cron Object */ export const DAY_OF_WEEK_NAME = "dayOfWeek";