mirror of
https://gitee.com/gitea/gitea
synced 2025-11-07 01:50:26 +08:00
9 lines
138 B
Go
Vendored
9 lines
138 B
Go
Vendored
// +build appengine
|
|
|
|
package runewidth
|
|
|
|
// IsEastAsian return true if the current locale is CJK
|
|
func IsEastAsian() bool {
|
|
return false
|
|
}
|