runewidth_js.go 190 B

123456789
  1. // +build js
  2. // +build !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. }