We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Steps to reproduce:
const parser = require('cron-parser'); let interval; // the following call prints `'2020-11-01T06:10:00.000Z'` interval = parser.parseExpression('* 10 1 * * 0', { tz: 'America/Toronto', currentDate: '2020-11-01T06:00:00.000Z' , endDate: '2020-11-01T06:30:00.000Z'}).next().toISOString(); // the following call has a slightly *larger* time range, but throws Error `Out of the timespan range`. interval = parser.parseExpression('* 10 1 * * 0', { tz: 'America/Toronto', currentDate: '2020-11-01T05:55:00.000Z' , endDate: '2020-11-01T06:30:00.000Z'}).next().toISOString();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce:
The text was updated successfully, but these errors were encountered: