Minor cleanup related stuff

This commit is contained in:
Bryan Ashby 2017-09-01 17:42:47 -06:00
parent 3c40cb0766
commit de46c28305
4 changed files with 10 additions and 17 deletions

View file

@ -169,7 +169,7 @@ ClientTerminal.prototype.pipeWrite = function(s, spec, cb) {
var conv = {
enigma : enigmaToAnsi,
renegade : renegadeToAnsi,
}[spec] || enigmaToAnsi;
}[spec] || renegadeToAnsi;
this.write(conv(s, this), null, cb); // null = use default for |convertLineFeeds|
};