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
Hi, (I have typescript fork from this lib, and I found an error. I'm just letting you know, since you have the same error: )
The creation date month parsing is incorrect at this line.
date.slice(4, 6) returns with an integer between [1,12], while Date.UTC expects an int between [0,11]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC
date.slice(4, 6)
Date.UTC
Best, Patrik
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
(I have typescript fork from this lib, and I found an error. I'm just letting you know, since you have the same error: )
The creation date month parsing is incorrect at this line.
date.slice(4, 6)
returns with an integer between [1,12], whileDate.UTC
expects an int between [0,11]:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC
Best,
Patrik
The text was updated successfully, but these errors were encountered: