2022-09-21 10:54:25 +02:00
|
|
|
//go:build js && !appengine
|
|
|
|
// +build js,!appengine
|
2021-02-01 00:10:16 +01:00
|
|
|
|
|
|
|
package runewidth
|
|
|
|
|
|
|
|
func IsEastAsian() bool {
|
|
|
|
// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
|
|
|
|
return false
|
|
|
|
}
|