1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-24 05:36:19 +02:00

10 lines
208 B
Go
Raw Normal View History

2022-09-23 20:01:44 +09:00
//go:build js && !appengine
// +build js,!appengine
2018-08-06 00:38:38 +10:00
package runewidth
func IsEastAsian() bool {
// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
return false
}