natural-cron.js
natural-cron.js copied to clipboard
Pure JavaScript library for converting natural English phrases into Cron expressions. Try out
every month 2nd Saturday - * * ? * SAT * (wrong) every month 2nd day at 3:00 pm - 0 15 2 * ? * (right) every last day...
Hello, In this line of code, shouldn't it be `if(topElement.hour.end == hour) {` ? https://github.com/darkeyedevelopers/natural-cron.js/blob/7b877d47d34b418bd424b2498aafbe42af61136a/src/states/clocktime.js#L84
'every hour between 5pm and 8pm' gives `* 17-20 * * ? *` which is not the correct expression. It should be `0 0 * 17-20 * ? *`