Malleys, зачем извращаться с bind если в api изначально заложена функциональность именно для такого случая:
function PressedKeysRegistry() {}
PressedKeysRegistry.prototype = {
constructor: PressedKeysRegistry,
start: function() {
addEventListener("keydown", this);
addEventListener("keyup", this);
},
stop: function() {
removeEventListener("keydown", this);
removeEventListener("keyup", this);
},
handleEvent: function(event) {
if(event.type === "keydown") {
if(this[event.code]) return;
this[event.code] = true;
} else if(event.type === "keyup") {
delete this[event.code];
}
}
};