chore: cleanup dead code

This commit is contained in:
adamdottv
2025-05-15 07:19:17 -05:00
parent 66fd38d6c1
commit 6478c2f87a
-13
View File
@@ -10,16 +10,3 @@ const (
SpinnerIcon string = "⟳"
DocumentIcon string = "🖼"
)
// CircledDigit returns the Unicode circled digit/number for 020.
// outofrange → "".
func CircledDigit(n int) string {
switch {
case n == 0:
return "\u24EA" // ⓪
case 1 <= n && n <= 20:
return string(rune(0x2460 + n - 1)) // ①–⑳
default:
return ""
}
}