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>stringify.ts
import { EMPTY_OBJECT } from "jsr:@coven/constants@^0.3.3"; import type { Maybe } from "jsr:@coven/types@^0.3.3"; import type { CronObject } from "./CronObject.ts"; import type { CronString } from "./CronString.ts"; import { fieldNamesTuple } from "./fieldNamesTuple.ts"; import { isValidExpression } from "./isValidExpression.ts"; import { stringifyField } from "./stringifyField.ts"; import { ALL_TOKEN } from "./tokens.ts"; /** * Takes a cron object and returns a sting expression. * * @example * ```typescript * stringify({}); // "* * * * *" * stringify({ dayOfMonth: 13, month: 10 }); // "* * 13 10 *" * stringify({ * minute: 5, * dayOfMonth: [10, 11, 13], * month: { from: 1, to: 10 } * }); // "5 * 10,11,13 1-10 *" * stringify({ month: 2, dayOfMonth: 31 }); // undefined * ``` * @see {@linkcode fieldNamesTuple} * @see {@linkcode stringifyField} * @see {@linkcode isValidExpression} * * @param cron Cron object. * @returns Cron string expression. */ export const stringify = ( cron: Partial<CronObject> = EMPTY_OBJECT, ): Maybe<CronString> => { const expression = fieldNamesTuple .map((name) => stringifyField(cron[name] ?? ALL_TOKEN)) .join(" "); return isValidExpression(expression) ? expression : undefined; };