blob: c2abbc2db30be0c33b36c274c581c1f28b8a41b8 [file] [log] [blame]
Abhay Kumara61c5222025-11-10 07:32:50 +00001//go:build js && !appengine
2// +build js,!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}