(el: any)
| 159 | */ |
| 160 | // TODO(FW-2832): type |
| 161 | const getElementChildren = (el: any) => { |
| 162 | return el.children != null ? el.children : el.childNodes; |
| 163 | }; |
| 164 | |
| 165 | const isSanitizerEnabled = (): boolean => { |
| 166 | const win = window as any; |
no outgoing calls
no test coverage detected