dashboard
repositories
filestore
activity
search
login
main
/
screen_demo3
招投标-北京密云
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
固定网格
fengxiang
2018-08-14
e967b16bd4517f98a8e9306a4c6092e2dea6a567
[screen_demo3.git]
/
src
/
app
/
core
/
module-import-guard.ts
1
2
3
4
5
6
// https://angular.io/guide/styleguide#style-04-12
export function throwIfAlreadyLoaded(parentModule: any, moduleName: string) {
if (parentModule) {
throw new Error(`${moduleName} has already been loaded. Import Core modules in the AppModule only.`);
}
}