Passed
Push — trunk ( e29f9e...dee8bf )
by Christian
12:14 queued 12s
created

component.init.ts ➔ initializeBaseComponents   A

Complexity

Conditions 1

Size

Total Lines 6
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 5
dl 0
loc 6
rs 10
c 0
b 0
f 0
1
/**
2
 * @package admin
3
 */
4
5
import baseComponents from 'src/app/component/components';
6
import registerAsyncComponents from 'src/app/asyncComponent/asyncComponents';
7
8
// eslint-disable-next-line sw-deprecation-rules/private-feature-declarations
9
export default function initializeBaseComponents() {
10
    registerAsyncComponents();
11
12
    return baseComponents();
13
}
14