(provider: any)
| 328 | } |
| 329 | |
| 330 | public isCustomValue(provider: any): provider is ValueProvider { |
| 331 | return ( |
| 332 | isObject(provider) && |
| 333 | Object.prototype.hasOwnProperty.call(provider, 'useValue') |
| 334 | ); |
| 335 | } |
| 336 | |
| 337 | public isCustomFactory(provider: any): provider is FactoryProvider { |
| 338 | return !isUndefined((provider as FactoryProvider).useFactory); |
no test coverage detected