A javascript library for defining recurring schedules and calculating future (or past) occurrences for them. Includes support for using English phrases and Cron schedules. Works in Node and in the browser.
The cron string(quartz type) should give the result related to At 06:00 AM, only on Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday, and Monday, but it is giving me wrong output as shown in the image.
I am using later.parse.cron("0 0 6 ? * 2,3,4,5,6,7,1 *") to parse the cron string.
The cron string(quartz type) should give the result related to
At 06:00 AM, only on Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday, and Monday
, but it is giving me wrong output as shown in the image.I am using
later.parse.cron("0 0 6 ? * 2,3,4,5,6,7,1 *")
to parse the cron string.