2022-09-21 08:54:25 +00:00
|
|
|
//go:build js && !appengine
|
|
|
|
// +build js,!appengine
|
2021-01-31 23:10:16 +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
|
|
|
|
}
|