(userAgent)
| 185 | } |
| 186 | |
| 187 | function isIe(userAgent) { |
| 188 | return ( |
| 189 | userAgent.indexOf("MSIE") !== -1 || userAgent.indexOf("Trident/") !== -1 |
| 190 | ); |
| 191 | } |
| 192 | |
| 193 | function isEdge(userAgent) { |
| 194 | return userAgent.indexOf("Edge/") !== -1; |
no outgoing calls
no test coverage detected
searching dependent graphs…