(value: any)
| 16 | import { safeGetMe } from "@utils/authGuards"; |
| 17 | const PLUGIN_VERSION = "5.0.6"; |
| 18 | |
| 19 | function htmlEscape(value: any): string { |
| 20 | return String(value ?? "") |
| 21 | .replace(/&/g, "&") |
| 22 | .replace(/</g, "<") |
| 23 | .replace(/>/g, ">") |
| 24 | .replace(/"/g, """); |
| 25 | } |
| 26 | |
| 27 | function codeTag(value: any): string { |
no outgoing calls
no test coverage detected