blob: 84b6528dfe914e1e6be7e309cdb1dc7eb6b2cc6f [file] [log] [blame]
Abhay Kumara61c5222025-11-10 07:32:50 +00001//go:build appengine
2// +build appengine
3
4package runewidth
5
6// IsEastAsian return true if the current locale is CJK
7func IsEastAsian() bool {
8 return false
9}