blob: c5fdf40baa0e29a7dfc24f10877f29ecf4648074 [file] [log] [blame]
Anand S Katti09541352020-01-29 15:54:01 +05301// +build js
2// +build !appengine
3
4package runewidth
5
6func IsEastAsian() bool {
7 // TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
8 return false
9}