Guest User

Untitled

a guest
Jun 21st, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const { Transform } = require('stream')
  2. const ts = Transform({ decodeStrings: false })
  3. ts._write = (chunk, enc, next) => {
  4. ts.push(chunk.toUpperCase())
  5. next()
  6. }
  7.  
  8. process.stdin.setEncoding('utf8')
  9. process.stdin.pipe(ts).pipe(process.stdout)
Add Comment
Please, Sign In to add comment