Skip to content

Instantly share code, notes, and snippets.

@slugbyte
Created May 12, 2016 01:04
Show Gist options
  • Select an option

  • Save slugbyte/62320f8ac6730ad68d96d5c126ceca14 to your computer and use it in GitHub Desktop.

Select an option

Save slugbyte/62320f8ac6730ad68d96d5c126ceca14 to your computer and use it in GitHub Desktop.
'use strict';
const Transform = require('stream').Transform;
const upperTransform = new Transform({
transform: function(chunk, encoding, next){
this.push(chunk.toString().toUpperCase());
next();
}
});
process.stdin.pipe(upperTransform).pipe(process.stdout);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment