runewidth_js.go 169 B

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