You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

runewidth_js.go 190B

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. }