go-utils/convert/round.go

10 lines
108 B
Go

package convert
func Round(val float64) int {
if val < 0 {
return int(val - 1.0)
}
return int(val)
}