This release is 2 versions behind 0.8.4 — the latest version of @coven/cron. Jump to latest
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.8.2)
/** * Token that represents "all" in a cron expression. */ export const ALL_TOKEN = "*"; /** * Token to separate list items in a cron expression. */ export const LIST_EXPRESSION_SEPARATOR_TOKEN = ","; /** * Token to separate range values in a cron expression. */ export const RANGE_EXPRESSION_SEPARATOR_TOKEN = "-";