remove stray console.log

This commit is contained in:
Adam Powers
2020-09-01 13:11:09 -07:00
parent 0c8e4e555e
commit 490b260454
-1
View File
@@ -4,7 +4,6 @@ let Module;
let userCallback; let userCallback;
let savedOnRuntimeInitialized; let savedOnRuntimeInitialized;
function nethackStart(cb, inputModule = {}) { function nethackStart(cb, inputModule = {}) {
console.log("cb is", cb);
if(typeof cb !== "function") throw new TypeError("expected first argument to be callback function"); if(typeof cb !== "function") throw new TypeError("expected first argument to be callback function");
if(typeof inputModule !== "object") throw new TypeError("expected second argument to be object"); if(typeof inputModule !== "object") throw new TypeError("expected second argument to be object");