runewidth_js.go

1// +build js
2
3package runewidth
4
5func IsEastAsian() bool {
6	// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
7	return false
8}