Files
J-Wash/ui/src/tok.js
T
2026-07-13 22:26:50 +02:00

8 lines
337 B
JavaScript

// Token display: leading/trailing spaces made visible with ˽ (like the original
// JLens) — ' Paris' → '˽Paris', 'foo ' → 'foo˽'. Without this it's impossible to
// tell ' Euro' from 'Euro' in the UI.
export function fmtTok(s) {
if (s == null) return ''
return String(s).replace(/^ +| +$/g, (m) => '˽'.repeat(m.length))
}