Issues (994)

1
//var index = require("./dist/index");
2
const c = require("./src/MVC/themes/assets/js/app.js");
0 ignored issues
show
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
console.log looks like debug code. Are you sure you do not want to remove it?
Loading history...
9
  }
10
}
11