Created
March 27, 2014 15:06
-
-
Save joshuakfarrar/9809616 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// had to use http://www.asciitable.com/ .. values should be in instructions, resource should be presented for next problem. | |
"use strict"; | |
var bl = require('bl'); | |
process.stdin.pipe(bl(function(err, data) { | |
for (var k = 0; k < data.length; k++) { | |
if (data[k] == 0x2e) data[k] = 0x21; | |
} | |
console.log(data); | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment