Skip to content

Instantly share code, notes, and snippets.

@ledsun
Created September 27, 2016 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ledsun/7e1fecd5214f854f68d4ca35a559845c to your computer and use it in GitHub Desktop.
Save ledsun/7e1fecd5214f854f68d4ca35a559845c to your computer and use it in GitHub Desktop.
echo 'デイリー' | node .
const {
Transform
} = require('stream')
process.stdin
.pipe(new Transform({
transform(chunk, encoding, callback) {
callback(null, chunk.toString()
.replace('デイリー', ''))
}
}))
.pipe(process.stdout)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment