1// +build appengine
2
3package runewidth
4
5// IsEastAsian return true if the current locale is CJK
6func IsEastAsian() bool {
7	return false
8}
9