PeerTube/client/src/app/core/module-import-guard.ts

6 lines
212 B
TypeScript
Raw Normal View History

export function throwIfAlreadyLoaded (parentModule: any, moduleName: string) {
2016-11-20 17:18:15 +01:00
if (parentModule) {
throw new Error(`${moduleName} has already been loaded. Import Core modules in the AppModule only.`)
2016-11-20 17:18:15 +01:00
}
}