mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-05 16:59:35 +00:00
4f63f283c4
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
9 lines
190 B
Go
Vendored
9 lines
190 B
Go
Vendored
// +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
|
|
}
|