Created
June 20, 2018 12:58
-
-
Save htor/5802b54dd9187515f04bb2aa35f17ee4 to your computer and use it in GitHub Desktop.
node transform stream
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
const { Transform } = require('stream') | |
const ts = Transform({ decodeStrings: false }) | |
ts._write = (chunk, enc, next) => { | |
ts.push(chunk.toUpperCase()) | |
next() | |
} | |
process.stdin.setEncoding('utf8') | |
process.stdin.pipe(ts).pipe(process.stdout) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment