GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( b06f31...22c0df )
by John
02:10 queued 22s
created

src/index.js   A

Complexity

Total Complexity 2
Complexity/F 2

Size

Lines of Code 14
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A index.js ➔ install 0 3 1
1
import Vue from 'vue';
2
import VueCsvImport from "./components/VueCsvImport";
3
4
function install(Vue, options = {}) {
5
    Vue.component(options.componentName || 'VueCsvImport', VueCsvImport);
6
}
7
8
if (typeof window !== undefined && window.Vue && window.Vue === Vue) {
9
    install(window.Vue);
10
}
11
12
export { VueCsvImport, install };
13
14
export default VueCsvImport;
15