Files
hertzbeat/web-app/src/app/core/module-import-guard.ts

7 lines
269 B
TypeScript
Raw Normal View History

// https://angular.io/guide/styleguide#style-04-12
export function throwIfAlreadyLoaded(parentModule: any, moduleName: string): void {
if (parentModule) {
throw new Error(`${moduleName} has already been loaded. Import Core modules in the AppModule only.`);
}
}