mirror of
https://github.com/bettercap/bettercap
synced 2025-07-30 11:40:33 -07:00
9 lines
105 B
Go
9 lines
105 B
Go
// +build go1.10
|
|
|
|
package xpath
|
|
|
|
import "math"
|
|
|
|
func round(f float64) int {
|
|
return int(math.Round(f))
|
|
}
|