angular/projects/ng-devtools-backend/src/lib/utils.ts
2020-01-29 11:52:19 -08:00

9 lines
271 B
TypeScript

export const runOutsideAngular = (f: () => any) => {
const w = window as any;
if (!w.Zone || w.Zone.current._name !== 'angular') {
return;
}
w.Zone.current._parent.run(f);
};
export const componentMetadata = (instance: any) => instance.constructor['ɵcmp'];