diff options
| -rw-r--r-- | helpfuncs.go | 10 | ||||
| -rw-r--r-- | main.go | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/helpfuncs.go b/helpfuncs.go index edcb7fe..194d68c 100644 --- a/helpfuncs.go +++ b/helpfuncs.go @@ -8,8 +8,18 @@ import ( "os" "path" "strings" + "unicode" ) +func isASCII(s string) bool { + for i := 0; i < len(s); i++ { + if s[i] > unicode.MaxASCII { + return false + } + } + return true +} + func colorText() { text := textView.GetText(false) quoteReplacer := strings.NewReplacer( @@ -3,7 +3,6 @@ package main import ( "flag" "strconv" - "unicode" "github.com/rivo/tview" ) @@ -23,15 +22,6 @@ var ( focusSwitcher = map[tview.Primitive]tview.Primitive{} ) -func isASCII(s string) bool { - for i := 0; i < len(s); i++ { - if s[i] > unicode.MaxASCII { - return false - } - } - return true -} - func main() { apiPort := flag.Int("port", 0, "port to host api") flag.Parse() |
