getMaxLength gets the maximum length of the number in base 10
(i int)
| 180 | |
| 181 | // getMaxLength gets the maximum length of the number in base 10 |
| 182 | func getMaxLength(i int) int { |
| 183 | return len(strconv.Itoa(i)) |
| 184 | } |
| 185 | |
| 186 | type taskFormatter struct { |
| 187 | client client.APIClient |