()
| 214 | // Note: For internal use only with `RouterModule`. Standalone setup via `provideRouter` does not |
| 215 | // need this at all because `PathLocationStrategy` is the default factory for `LocationStrategy`. |
| 216 | function providePathLocationStrategy(): Provider { |
| 217 | return {provide: LocationStrategy, useClass: PathLocationStrategy}; |
| 218 | } |
| 219 | |
| 220 | export function provideForRootGuard(): any { |
| 221 | const router = inject(Router, {optional: true, skipSelf: true}); |
no outgoing calls
no test coverage detected
searching dependent graphs…