(s: string)
| 117 | } |
| 118 | |
| 119 | function escapeHtml(s: string): string { |
| 120 | return s.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''') |
| 121 | } |
| 122 | |
| 123 | function callbackPageHtml(success: boolean, errorMessage?: string): string { |
| 124 | const title = success ? 'Connected — Codebuff' : 'Connection Failed — Codebuff' |