Guest User

Untitled

a guest
Dec 10th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. module.exports = piper
  2.  
  3. function piper(createStream) {
  4. return function (stream) {
  5. var s = createStream()
  6. s.pipe(stream).pipe(s)
  7. }
  8. }
Add Comment
Please, Sign In to add comment