assets/js/boot.js   A
last analyzed

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 10
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 2
dl 0
loc 10
rs 10
c 0
b 0
f 0
cc 0
nc 1
mnd 0
bc 0
fnc 2
bpm 0
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A boot.js ➔ ??? 0 1 1
1
import Vue from 'vue';
2
Vue.config.productionTip = false;
3
4
// register global components
5
import components from './components/global';
6
Object.keys(components).forEach(tag => Vue.component(tag, components[tag]));
7
8
// register global filters
9
import filters from './filters/global';
10
Object.keys(filters).forEach(tag => Vue.filter(tag, filters[tag]));
11