(jobConfig: ScheduledJobConfig)
| 81 | * path separators or line breaks. |
| 82 | */ |
| 83 | function isValidJobId(id: string): boolean { |
| 84 | return id.length > 0 && id.length <= 128 && !INVALID_JOB_ID_CHARS.test(id); |
| 85 | } |
| 86 | |
| 87 | function isRecurringJob(jobConfig: ScheduledJobConfig): boolean { |
| 88 | return hasJobSchedule(jobConfig); |
no test coverage detected