subsonic-tui/vendor/github.com/mattn/go-runewidth/runewidth_js.go
Sagi Dayan 48661005be
initial commit
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-09-01 16:30:56 +03:00

9 lines
208 B
Go

//go:build js && !appengine
// +build js,!appengine
package runewidth
func IsEastAsian() bool {
// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
return false
}