()
| 1 | const vitalsUrl = 'https://vitals.vercel-analytics.com/v1/vitals' |
| 2 | |
| 3 | function getConnectionSpeed() { |
| 4 | return 'connection' in navigator && |
| 5 | navigator['connection'] && |
| 6 | 'effectiveType' in navigator['connection'] |
| 7 | ? navigator['connection']['effectiveType'] |
| 8 | : '' |
| 9 | } |
| 10 | |
| 11 | export function sendToVercelAnalytics(metric) { |
| 12 | const analyticsId = process.env.REACT_APP_VERCEL_ANALYTICS_ID |
no outgoing calls
no test coverage detected