This repository has been archived on 2024-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
stick/twig/filter/round_go1.10.go

13 lines
132 B
Go
Raw Normal View History

2021-09-18 03:53:19 +00:00
//go:build go1.10
// +build go1.10
package filter
import (
"math"
)
func mathRound(f float64) float64 {
return math.Round(f)
}