()
| 42 | } |
| 43 | |
| 44 | function isSupported() { |
| 45 | if (supported !== undefined) { |
| 46 | return supported |
| 47 | } |
| 48 | if (typeof window !== 'undefined' && window.performance) { |
| 49 | supported = true |
| 50 | perf = window.performance |
| 51 | } else { |
| 52 | supported = false |
| 53 | } |
| 54 | return supported |
| 55 | } |
no outgoing calls
no test coverage detected