2024-11-06 17:37:08 +00:00
|
|
|
//go:build js && !appengine
|
|
|
|
// +build js,!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
|
|
|
|
}
|