gemini-browser

A text-based gemini browser
git clone git://git.laack.co/gemini-browser.git
Log | Files | Refs | README

runewidth_js.go (208B)


      1 //go:build js && !appengine
      2 // +build js,!appengine
      3 
      4 package runewidth
      5 
      6 func IsEastAsian() bool {
      7 	// TODO: Implement this for the web. Detect east asian in a compatible way, and return true.
      8 	return false
      9 }