()
| 85 | * @suppress {uselessCode} |
| 86 | */ |
| 87 | export function isDOMParserAvailable() { |
| 88 | try { |
| 89 | return !!new window.DOMParser().parseFromString( |
| 90 | trustedHTMLFromString('') as string, |
| 91 | 'text/html', |
| 92 | ); |
| 93 | } catch { |
| 94 | return false; |
| 95 | } |
| 96 | } |
no test coverage detected
searching dependent graphs…