(value)
| 22 | } |
| 23 | |
| 24 | function jsonForHtml(value) { |
| 25 | return JSON.stringify(value, null, 2) |
| 26 | .replaceAll("<", "\\u003c") |
| 27 | .replaceAll(">", "\\u003e") |
| 28 | .replaceAll("&", "\\u0026"); |
| 29 | } |
| 30 | |
| 31 | function formatDate(value) { |
| 32 | return new Intl.DateTimeFormat("en-US", { |
no outgoing calls
no test coverage detected