2019-10-04 15:21:24 +00:00
|
|
|
// +build js
|
2019-11-04 10:08:22 +00:00
|
|
|
// +build !appengine
|
2019-10-04 15:21:24 +00:00
|
|
|
|
|
|
|
package runewidth
|
|
|
|
|
|
|
|
func IsEastAsian() bool {
|
|
|
|
// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
|
|
|
|
return false
|
|
|
|
}
|