mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
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
|
|
}
|