mirror of
https://github.com/containers/podman.git
synced 2025-09-24 07:15:12 +08:00

* If possible, update each dependency to the latest available version. * Use releases over commit IDs and avoid vendoring branches. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
10 lines
190 B
Go
10 lines
190 B
Go
// +build js
|
|
// +build !appengine
|
|
|
|
package runewidth
|
|
|
|
func IsEastAsian() bool {
|
|
// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
|
|
return false
|
|
}
|