2024-05-24 14:08:09 -07:00
|
|
|
//go:build js && !appengine
|
|
|
|
// +build js,!appengine
|
2019-12-26 14:12:28 -08:00
|
|
|
|
|
|
|
package runewidth
|
|
|
|
|
|
|
|
func IsEastAsian() bool {
|
|
|
|
// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
|
|
|
|
return false
|
|
|
|
}
|