You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to read the code (and the test cases) to see if there was a low hanging fruit expecting a PR but no luck... I'm happy to create a PR if given the direction of what's missing in the code.
Thanks,
Gleidson
The text was updated successfully, but these errors were encountered:
Given the following time object:
time.Now() // 2013-11-18 17:51:49.123456789 Mon
How can I return the day, either as a ISOWeek (Monday) or as an int?
Also, considering the opposite:
now.Parse(1) // 2013-11-18 00:00:00.000000000 Mon
now.Parse("Monday") // 2013-11-18 00:00:00.000000000 Mon
How can I provide a day of the week (either Mon or 1) and time (Hour:Minute) to parse the full Time object? Like:
now.Parse("Monday", "12:34") // 2013-11-18 12:34:00.000000000 Mon
I tried to read the code (and the test cases) to see if there was a low hanging fruit expecting a PR but no luck... I'm happy to create a PR if given the direction of what's missing in the code.
Thanks,
Gleidson
The text was updated successfully, but these errors were encountered: