mirror of
https://github.com/araddon/dateparse.git
synced 2024-11-10 11:51:54 +08:00
Doc cleanup
This commit is contained in:
parent
065d8139da
commit
66be9ffaaf
@ -1,16 +1,12 @@
|
|||||||
Go Date Parser
|
Go Date Parser
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
Parse any date string without knowing format in advance. Uses
|
Parse any date string without knowing format in advance. Uses a scanner to read bytes and use a state machine to find format. Much faster than shotgun based parse methods. See [bench_test.go](https://github.com/araddon/dateparse/blob/master/bench_test.go) for performance comparison.
|
||||||
a scanner to read bytes and use a state machine to find format.
|
|
||||||
Much faster than shotgun based parse methods.
|
|
||||||
See [bench_test.go](https://github.com/araddon/dateparse/blob/master/bench_test.go) for performance comparison.
|
|
||||||
|
|
||||||
|
|
||||||
[![Codecov](https://img.shields.io/codecov/c/github/araddon/dateparse.svg)]()
|
[![Codecov](https://img.shields.io/codecov/c/github/araddon/dateparse.svg)]()
|
||||||
|
|
||||||
**Timezones** The location your server is configured effects the results!
|
**Timezones** The location your server is configured effects the results! See example or https://play.golang.org/p/IDHRalIyXh and last paragraph here https://golang.org/pkg/time/#Parse.
|
||||||
See example or https://play.golang.org/p/IDHRalIyXh and last paragraph here https://golang.org/pkg/time/#Parse.
|
|
||||||
|
|
||||||
See example https://github.com/araddon/dateparse/blob/master/example/main.go
|
See example https://github.com/araddon/dateparse/blob/master/example/main.go
|
||||||
```go
|
```go
|
||||||
|
Loading…
Reference in New Issue
Block a user