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
When trying to create a dayjs object using the format HH:ss, the result is "Invalid Date". Here is a minimal example to reproduce:
dayjs
HH:ss
import dayjs from "dayjs-ext"; import customParseFormat from "dayjs-ext/plugin/customParseFormat"; dayjs.extend(customParseFormat); const r = dayjs("12:12", { format: "HH:ss" }); console.log(r); // invalid date
Here's the runnable code as well: https://codesandbox.io/s/pkl826wrj?module=%2Fsrc%2Findex.js
Thanks for your time!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When trying to create a
dayjs
object using the formatHH:ss
, the result is "Invalid Date". Here is a minimal example to reproduce:Here's the runnable code as well:
https://codesandbox.io/s/pkl826wrj?module=%2Fsrc%2Findex.js
Thanks for your time!
The text was updated successfully, but these errors were encountered: