Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/kw/kw.go
diff options
context:
space:
mode:
Diffstat (limited to 'kw/kw.go')
-rw-r--r--kw/kw.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/kw/kw.go b/kw/kw.go
index 74449e2f..5820e2f7 100644
--- a/kw/kw.go
+++ b/kw/kw.go
@@ -81,3 +81,13 @@ func (kw *kw) FmtNumber(num float64, v uint64) []byte {
s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
return []byte(s)
}
+
+// FmtPercent returns 'num' with digits/precision of 'v' for 'kw' and handles both Whole and Real numbers based on 'v'
+// returned as a []byte just in case the caller wishes to add more and can help
+// avoid allocations; otherwise just cast as string.
+// NOTE: 'num' passed into FmtPercent is assumed to be in percent already
+func (kw *kw) FmtPercent(num float64, v uint64) []byte {
+
+ s := strconv.FormatFloat(math.Abs(num), 'f', int(v), 64)
+ return []byte(s)
+}