toLower converts a string to lowercase using optimized stdlib
(s string)
| 352 | |
| 353 | // toLower converts a string to lowercase using optimized stdlib |
| 354 | func toLower(s string) string { |
| 355 | return strings.ToLower(s) |
| 356 | } |
| 357 | |
| 358 | // makeProgressBar creates a visual progress bar |
| 359 | // percent should be between 0 and 100 |