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