mirror of
https://github.com/strongdm/comply
synced 2024-11-06 07:55:26 +00:00
7468711b3b
Releases after github.com/xanzy/go-gitlab@v0.31.0 introduce breaking changes to the NewClient call. Addresses #94
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
|
|
}
|