cRonstrue icon indicating copy to clipboard operation
cRonstrue copied to clipboard

JavaScript library that translates Cron expressions into human readable descriptions

Results 7 cRonstrue issues
Sort by recently updated
recently updated
newest added

## Summary It would be nice-to-have an option in `Options` https://github.com/bradymholt/cRonstrue/blob/3c94b7ea0c90f9be79a0e49d20a465f2fc3a87d3/src/options.ts#L1-L8 such as `withTimezone?: string` that would allow us to add a timezone to the output. So for example: ```...

**Cron string:** `0 0 * * 0#1,0#2` **Expected Output:** ``` At 12:00 AM, on the 1st Sunday and 2nd Sunday of the month ``` **Actual Output:** ``` At 12:00 AM,...

### Description On some patterns, the English language sentence either omits commas or adds them in in unexpected ways. **Pattern:** `0 15 5 1-2,6/1 * *` **Output:** `At 05:151 through...

Thanks for all the great work on cRonstrue! I noticed that when a time in 24-hour format is converted to 12-hour format, it still has a leading zero: `16:51` or...

**Cron Expression** `0 20 28 * *` with a `tzOffset` set to `5` **Expected Output** "At 01:00 AM, on day 29 of the month" **Actual Output** "At 01:00 AM, on...

Thank you for your efforts 🙌🏽. I was trying the package and noticed that the [dual form](https://en.wikipedia.org/wiki/Dual_(grammatical_number)#:~:text=Dual%20(abbreviated%20DU)%20is%20a,single%20unit%20or%20in%20unison.) isn't supported. If you're planning to support it, I'll be happy to help...

**Cron Expression** * 1-2,22-23 * * * **Expected Output** "Every minute, at 01:00 AM through 02:59 AM and 10:00 PM through 11:59 PM" **Actual Output** "Every minute, at 01:00 AM...