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
Copy file name to clipboardExpand all lines: README.md
+41-6
Original file line number
Diff line number
Diff line change
@@ -240,12 +240,17 @@ dt, _ = dps.Parse(cfg, "miy 02-03-2016") // philippines, keep using MDY date ord
240
240
By default, **dateparser** uses the timezone that is present in the date string. If the timezone is not present, then it will use timezone from the `CurrentTime`:
241
241
242
242
```go
243
-
// Current time is 2015-06-01 12:00:00 WIB
244
-
wib:= time.FixedZone("WIB", 7*60*60)
243
+
// Use case: I'm from Jakarta, parsing London's news article.
244
+
// So, my current time use GMT+7, however the parser's default timezone is GMT.
0 commit comments