Plato on Github
Report Home
input/index.js
Maintainability
142.44
Lines of code
24
Difficulty
13.13
Estimated Errors
0.08
Function weight
By Complexity
By SLOC
define('lyria/input', function() { var Input = {}; Input.key = {}; Input.mouse = {}; Input.key.down = function(key) { }; Input.key.up = function(key) { }; Input.mouse.down = function() { }; Input.mouse.up = function() { }; return Input; });