Plato on Github
Report Home
c-es6.js
Maintainability
97.80
Lines of code
20
Difficulty
12.10
Estimated Errors
0.06
Function weight
By Complexity
By SLOC
const a = 1; class C { static classMethodA(arg) { return arg; } static classMethodB(arg) { return arg; } } function moduleMethod(arg) { return arg; } const b = moduleMethod(0) + C.classMethodB(1) + C.classMethodA(2); export default C;