runewidth_js.go 208 B

123456789
  1. //go:build js && !appengine
  2. // +build js,!appengine
  3. package runewidth
  4. func IsEastAsian() bool {
  5. // TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
  6. return false
  7. }