mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00
10 lines
159 B
Go
10 lines
159 B
Go
//go:build appengine
|
|
// +build appengine
|
|
|
|
package runewidth
|
|
|
|
// IsEastAsian return true if the current locale is CJK
|
|
func IsEastAsian() bool {
|
|
return false
|
|
}
|