File: runewidth_js.go

package info (click to toggle)
golang-github-mattn-go-runewidth 0.0.16-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 184 kB
  • sloc: makefile: 5
file content (9 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
//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
}