// (c) 2019-2020, Ava Labs, Inc. All rights reserved. // See the file LICENSE for licensing terms. package formatting import ( "fmt" "math" ) // IntFormat ... func IntFormat(maxValue int) string { log := 1 if maxValue > 0 { log = int(math.Ceil(math.Log10(float64(maxValue + 1)))) } return fmt.Sprintf("%%0%dd", log) }