()
| 434 | } |
| 435 | |
| 436 | export function clearDOMTextSelection(): void { |
| 437 | if (window.getSelection) { |
| 438 | if (window.getSelection()?.empty) { |
| 439 | // Chrome |
| 440 | window.getSelection()?.empty() |
| 441 | } else if (window.getSelection()?.removeAllRanges) { |
| 442 | // Firefox |
| 443 | window.getSelection()?.removeAllRanges() |
| 444 | } |
| 445 | } else if ((document as any).selection) { |
| 446 | // IE? |
| 447 | ;(document as any).selection.empty() |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | export function slugify(text: string): string { |
| 452 | return text |
no outgoing calls
no test coverage detected
searching dependent graphs…