Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
⏳ Fantastic cron parser and constructor.
This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
JSR Score
100%
Published
2 months ago (0.3.3)
/** * Name of a minute field in the object representation of a cron expression. */ export const MINUTE_NAME = "minute"; /** * Name of a hour field in the object representation of a cron expression. */ export const HOUR_NAME = "hour"; /** * Name of a day of month field in the object representation of a cron expression. */ export const DAY_OF_MONTH_NAME = "dayOfMonth"; /** * Name of a month field in the object representation of a cron expression. */ export const MONTH_NAME = "month"; /** * Name of a day of week field in the object representation of a cron expression. */ export const DAY_OF_WEEK_NAME = "dayOfWeek";