subsonic-tui/vendor/github.com/mattn/go-runewidth/runewidth_js.go
Sagi Dayan 26e526f07e
initial commit
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-02-20 19:10:14 +02: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
}