(type: any)
| 251 | * @param type type which may have an injector def (`ɵinj`) |
| 252 | */ |
| 253 | export function getInjectorDef<T>(type: any): ɵɵInjectorDef<T> | null { |
| 254 | return type && type.hasOwnProperty(NG_INJ_DEF) ? (type as any)[NG_INJ_DEF] : null; |
| 255 | } |
| 256 | |
| 257 | export const NG_PROV_DEF: string = getClosureSafeProperty({ɵprov: getClosureSafeProperty}); |
| 258 | export const NG_INJ_DEF: string = getClosureSafeProperty({ɵinj: getClosureSafeProperty}); |
no outgoing calls
no test coverage detected
searching dependent graphs…