(field: string)
| 87 | } |
| 88 | |
| 89 | function isWildcard(field: string): boolean { |
| 90 | // `*` and `*/n` both leave the field unconstrained in the |
| 91 | // "every value" sense — but only bare `*` should suppress the dom/dow |
| 92 | // OR rule. cron's tradition treats `*/n` as a restriction. |
| 93 | return field === '*'; |
| 94 | } |
| 95 | |
| 96 | function parseField(field: string, min: number, max: number, name: string): Set<number> { |
| 97 | if (field === '') { |
no outgoing calls
no test coverage detected