abra/vendor/github.com/muesli/reflow/ansi/ansi.go
decentral1se 30d3dbc796
All checks were successful
continuous-integration/drone/push Build is passing
feat: improved deploy progress reporting
See #478
2025-03-23 10:04:06 +01:00

8 lines
133 B
Go

package ansi
const Marker = '\x1B'
func IsTerminator(c rune) bool {
return (c >= 0x40 && c <= 0x5a) || (c >= 0x61 && c <= 0x7a)
}