Guest User

Untitled

a guest
Apr 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. const {Transform} = require('stream')
  2.  
  3. class UpperCase extends Transform {
  4. _transform (chunk, encoding, done) {
  5. done(null, chunk.toString().toUpperCase())
  6. }
  7. }
  8.  
  9. module.exports = UpperCase
Add Comment
Please, Sign In to add comment