(s)
| 57 | HELPERS |
| 58 | ══════════════════════════════════════════════════════════ */ |
| 59 | function escHtml(s) { |
| 60 | return String(s).replace(/[&<>"']/g, ch => ({ |
| 61 | '&': '&', |
| 62 | '<': '<', |
| 63 | '>': '>', |
| 64 | '"': '"', |
| 65 | "'": ''', |
| 66 | }[ch])); |
| 67 | } |
| 68 | |
| 69 | function fmtVal(v) { |
| 70 | return v === undefined |
no outgoing calls
no test coverage detected