18 lines
291 B
JavaScript
18 lines
291 B
JavaScript
(function() {
|
|
var KeypressListener;
|
|
|
|
KeypressListener = (function() {
|
|
function KeypressListener(name) {
|
|
this.name = name;
|
|
}
|
|
|
|
KeypressListener.prototype.listen = function() {};
|
|
|
|
return KeypressListener;
|
|
|
|
})();
|
|
|
|
}).call(this);
|
|
|
|
//# sourceMappingURL=frontend.js.map
|