a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
23 lignes
403 o
Go
23 lignes
403 o
Go
package humanize
|
|
|
|
import "strconv"
|
|
|
|
func stripTrailingZeros(s string) string {
|
|
offset := len(s) - 1
|
|
for offset > 0 {
|
|
if s[offset] == '.' {
|
|
offset--
|
|
break
|
|
}
|
|
if s[offset] != '0' {
|
|
break
|
|
}
|
|
offset--
|
|
}
|
|
return s[:offset+1]
|
|
}
|
|
|
|
// Ftoa converts a float to a string with no trailing zeros.
|
|
func Ftoa(num float64) string {
|
|
return stripTrailingZeros(strconv.FormatFloat(num, 'f', 6, 64))
|
|
}
|