mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-03 15:27:57 +08:00
10 lines
178 B
Go
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
|
|
}
|