mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
10 lines
121 B
Go
10 lines
121 B
Go
|
package util
|
||
|
|
||
|
// MinInt returns the smaller of x or y.
|
||
|
func MinInt(x, y int) int {
|
||
|
if x > y {
|
||
|
return y
|
||
|
}
|
||
|
return x
|
||
|
}
|