File: use-stream.patch

package info (click to toggle)
node-merge-stream 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 116 kB
  • ctags: 5
  • sloc: makefile: 4; sh: 2
file content (12 lines) | stat: -rw-r--r-- 277 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
Use stream instead of readable-stream

--- a/index.js
+++ b/index.js
@@ -1,6 +1,6 @@
 'use strict';
 
-var PassThrough = require('readable-stream/passthrough')
+var PassThrough = require('stream').PassThrough
 
 module.exports = function (/*streams...*/) {
   var sources = []