Plato on Github
Report Home
src/input/index.js
Maintainability
142.44
Lines of code
24
Difficulty
14.50
Estimated Errors
0.07
Function weight
By Complexity
By SLOC
define(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; });