mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
da20785685
Former-commit-id: 23f542f43b4b493e38f5aa4c29788ed93a63b43b [formerly 71b23a6a28eb045fcfeab6329de69f1e5455486b] Former-commit-id: d12b3a6decc876f010a71f98e11df7387c1aaf2a
26 lines
416 B
Go
26 lines
416 B
Go
package runewidth
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
var (
|
|
kernel32 = syscall.NewLazyDLL("kernel32")
|
|
procGetConsoleOutputCP = kernel32.NewProc("GetConsoleOutputCP")
|
|
)
|
|
|
|
// IsEastAsian return true if the current locale is CJK
|
|
func IsEastAsian() bool {
|
|
r1, _, _ := procGetConsoleOutputCP.Call()
|
|
if r1 == 0 {
|
|
return false
|
|
}
|
|
|
|
switch int(r1) {
|
|
case 932, 51932, 936, 949, 950:
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|