2022-09-23 20:01:44 +09:00
|
|
|
//go:build js && !appengine
|
|
|
|
// +build js,!appengine
|
2018-08-06 00:38:38 +10:00
|
|
|
|
|
|
|
package runewidth
|
|
|
|
|
|
|
|
func IsEastAsian() bool {
|
|
|
|
// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
|
|
|
|
return false
|
|
|
|
}
|