({url}: RouteMatchCallbackOptions)
| 129 | */ |
| 130 | const createCollectRoutes = (bgSyncPlugin: BackgroundSyncPlugin) => { |
| 131 | const match = ({url}: RouteMatchCallbackOptions) => |
| 132 | url.hostname === GOOGLE_ANALYTICS_HOST && |
| 133 | COLLECT_PATHS_REGEX.test(url.pathname); |
| 134 | |
| 135 | const handler = new NetworkOnly({ |
| 136 | plugins: [bgSyncPlugin], |
nothing calls this directly
no outgoing calls
no test coverage detected