UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

21 lines (17 loc) 469 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); /** * 获取 cron-parser 库 * cron-parser 是一个用于解析 cron 表达式的第三方库 * @returns cron-parser 库 * @example * ```ts * const cronParser = getCronParser(); * const interval = cronParser.parseExpression('0 0 * * *'); * interval.next().toString(); * ``` */ function getCronParser() { return require('cron-parser'); } exports.getCronParser = getCronParser;