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)
import { zip } from "jsr:@coven/iterables@^0.3.3"; import { FROM_NAME, TO_NAME } from "./rangeFieldNames.ts"; /** * Zips "from" and "to". */ export const zipRangeNames: <RangeNames>( rangeNames: Iterable<RangeNames>, ) => IterableIterator< readonly [typeof FROM_NAME | typeof TO_NAME, RangeNames] > = zip([FROM_NAME, TO_NAME] as const);