func min()

in provider/parameter_store_provider.go [136:141]


func min(i, j int) int {
	if i > j {
		return j
	}
	return i
}