From d5e1f7e2982c2fcc888ccac550b34095efbee217 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Fri, 18 May 2018 07:32:31 -0700 Subject: Upgrading server dependency. (#8807) --- vendor/github.com/hako/durafmt/README.md | 44 +++++++++++++++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) (limited to 'vendor/github.com/hako/durafmt/README.md') diff --git a/vendor/github.com/hako/durafmt/README.md b/vendor/github.com/hako/durafmt/README.md index 128819282..6b26faaf3 100644 --- a/vendor/github.com/hako/durafmt/README.md +++ b/vendor/github.com/hako/durafmt/README.md @@ -33,7 +33,7 @@ The above seems very easy to read, unless your duration looks like this: package main import ( - "fmt" + "fmt" "github.com/hako/durafmt" ) @@ -47,6 +47,28 @@ func main() { } ``` +### durafmt.ParseStringShort() + +Version of `durafmt.ParseString()` that only returns the first part of the duration string. + +```go +package main + +import ( + "fmt" + "github.com/hako/durafmt" +) + +func main() { + duration, err := durafmt.ParseStringShort("354h22m3.24s") + if err != nil { + fmt.Println(err) + } + fmt.Println(duration) // 2 weeks + // duration.String() // String short representation. "2 weeks" +} +``` + ### durafmt.Parse() ```go @@ -65,6 +87,26 @@ func main() { } ``` +### durafmt.ParseShort() + +Version of `durafmt.Parse()` that only returns the first part of the duration string. + +```go +package main + +import ( + "fmt" + "time" + "github.com/hako/durafmt" +) + +func main() { + timeduration := (354 * time.Hour) + (22 * time.Minute) + (3 * time.Second) + duration := durafmt.ParseShort(timeduration).String() + fmt.Println(duration) // 2 weeks +} +``` + # Contributing Contributions are welcome! Fork this repo and add your changes and submit a PR. -- cgit v1.2.3-1-g7c22