mirror of
https://github.com/docker/cli.git
synced 2026-09-25 07:50:37 -05:00
Contains various performance optimisations. full diff: https://github.com/mattn/go-runewidth/compare/v0.0.13...v0.0.14 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
10 lines
208 B
Go
10 lines
208 B
Go
//go:build js && !appengine
|
|
// +build js,!appengine
|
|
|
|
package runewidth
|
|
|
|
func IsEastAsian() bool {
|
|
// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
|
|
return false
|
|
}
|