(text: string)
| 513 | } |
| 514 | |
| 515 | function insert(text: string) { |
| 516 | text = text |
| 517 | .replace(/&/g, '&') |
| 518 | .replace(/</g, '<') |
| 519 | .replace(/>/g, '>') |
| 520 | .replace(/"/g, '"') |
| 521 | .replace(/'/g, ''') |
| 522 | document.execCommand('insertHTML', false, text) |
| 523 | } |
| 524 | |
| 525 | function debounce(cb: any, wait: number) { |
| 526 | let timeout = 0 |
no outgoing calls
no test coverage detected