(text string)
| 1351 | } |
| 1352 | |
| 1353 | func stripANSI(text string) string { |
| 1354 | return ansiSequencePattern.ReplaceAllString(text, "") |
| 1355 | } |
| 1356 | |
| 1357 | func runeLen(text string) int { |
| 1358 | return utf8.RuneCountInString(text) |
no outgoing calls
no test coverage detected