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

menuVertical.js ➔ menuVerticalRender   A

Complexity

Conditions 1

Size

Total Lines 7
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 7
rs 10
c 0
b 0
f 0
cc 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