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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems you didn't implement Symbol.iterator thus can't iterate via for...of:
for...of
const interval = CronExpression.parse('0 * * * *', options) for (let i of interval) { console.log(i.value.toString()) }
The text was updated successfully, but these errors were encountered:
@chrischjh well yes. I'm planning to rewrite it in ES6 in the near future.
Sorry, something went wrong.
I'd be willing to help with that (see #112)
#203 is a PR that implements this
Successfully merging a pull request may close this issue.
It seems you didn't implement Symbol.iterator thus can't iterate via
for...of
:The text was updated successfully, but these errors were encountered: