File: ansi.go

package info (click to toggle)
golang-github-muesli-reflow 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, forky, sid, trixie
  • size: 180 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 133 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
package ansi

const Marker = '\x1B'

func IsTerminator(c rune) bool {
	return (c >= 0x40 && c <= 0x5a) || (c >= 0x61 && c <= 0x7a)
}