kubo/test/cli/testutils/floats.go
Marcin Rataj 40ba801eed chore: apply go fix modernizers from Go 1.26
automated refactoring: interface{} to any, slices.Contains,
and other idiomatic updates.
2026-02-11 00:09:32 +01:00

10 lines
178 B
Go

package testutils
func FloatTruncate(value float64, decimalPlaces int) float64 {
pow := 1.0
for range decimalPlaces {
pow *= 10.0
}
return float64(int(value*pow)) / pow
}