summaryrefslogtreecommitdiff
path: root/examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_appengine.go
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-11-21 11:45:45 +0100
committerToni Uhlig <matzeton@googlemail.com>2021-11-21 11:45:45 +0100
commitcfecf3e11017142193428e8830d8e0e8562d795b (patch)
treefeba563945c738f5a7e7e85e78403ca0363d0a0f /examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_appengine.go
parent25b974af67d98fa19e0953194347a1260d684ef5 (diff)
go-dashboard renaming, ignore go-mod and it's file structure
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_appengine.go')
-rw-r--r--examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_appengine.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_appengine.go b/examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_appengine.go
new file mode 100644
index 000000000..7d99f6e52
--- /dev/null
+++ b/examples/go-dashboard/src/github.com/mattn/go-runewidth/runewidth_appengine.go
@@ -0,0 +1,8 @@
+// +build appengine
+
+package runewidth
+
+// IsEastAsian return true if the current locale is CJK
+func IsEastAsian() bool {
+ return false
+}