Passed
Push — master ( 8dcf5b...e6feb1 )
by Felipe Catão do
01:05
created

LavineWiki/components/menuVertical.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 19
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

2 Functions

Rating   Name   Duplication   Size   Complexity  
A menuVertical.js ➔ menuVertical 0 3 1
A menuVertical.js ➔ menuVerticalRender 0 7 1
1
import EngineApp from '../../Framework/engine.js'
2
let eng =new EngineApp()
0 ignored issues
show
Unused Code introduced by
The variable eng seems to be never used. Consider removing it.
Loading history...
3
4
5
function menuVertical(){
6
7
}
8
9
function  menuVerticalRender(){
10
    return "<ul>"+
11
    "<li class='nav-item'>"+
12
    ""+
13
    ""+
14
    "</ul>"
15
}
16
17
18
19
export default menuVertical