mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
9 lines
159 B
Go
9 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
|
|
}
|