Skip to main content

@coven/cron@0.3.3
Built and signed on GitHub Actions

⏳ Fantastic cron parser and constructor.

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
100%
Published
2 months ago (0.3.3)
Package root>RangeField.ts
/** * Type that represents a range of values for a cron object field. */ export type RangeField<Value extends number> = { /** * Start of the range, must be lower than `to`. */ readonly from: Value; /** * End of the range, must be higher than `from`. */ readonly to: Value; };