index.js   A
last analyzed

Complexity

Total Complexity 2
Complexity/F 0

Size

Lines of Code 9
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 2
mnd 2
bc 2
fnc 0
bpm 0
cpm 0
noi 2
1
//var index = require("./dist/index");
2
const c = require("./src/MVC/themes/assets/js/app.js");
0 ignored issues
show
Unused Code introduced by
The constant c seems to be never used. Consider removing it.
Loading history...
3
for (var i in this) {
4
  if (
5
    (typeof this[i]).toString() == "function" &&
6
    this[i].toString().indexOf("native") == -1
7
  ) {
8
    console.log(this[i].name);
0 ignored issues
show
Debugging Code introduced by
console.log looks like debug code. Are you sure you do not want to remove it?
Loading history...
9
  }
10
}
11