(userAgent = window.navigator.userAgent)
| 195 | } |
| 196 | |
| 197 | export function isIeOrEdge(userAgent = window.navigator.userAgent) { |
| 198 | return isIe(userAgent) || isEdge(userAgent); |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * This is intended to be used to compose event handlers |
no test coverage detected
searching dependent graphs…