Skip to content

Instantly share code, notes, and snippets.

@venil7
Created March 10, 2014 22:13
Show Gist options
  • Save venil7/9475591 to your computer and use it in GitHub Desktop.
Save venil7/9475591 to your computer and use it in GitHub Desktop.
process.stdin.setEncoding('utf8');
// becomes readable on every [enter] keystroke
process.stdin.on('readable', function(chunk) {
var chunk = process.stdin.read();
if (chunk !== null) {
console.log(chunk
.split('')
.map(function(c) {
return String.fromCharCode(c.charCodeAt(0)-1);
}).join(''));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment