funky-framadate-front/src/app/core/guards/module-import.guard.ts

6 lines
215 B
TypeScript

export function throwIfAlreadyLoaded(parentModule: any, moduleName: string): void {
if (parentModule) {
throw new Error(`${moduleName} has already been loaded. Import ${moduleName} in the AppModule only.`);
}
}