node-shoutcast icon indicating copy to clipboard operation
node-shoutcast copied to clipboard

util.pump() is deprecated. Use readableStream.pipe() instead.

Open ghost opened this issue 10 years ago • 1 comments

Thanks for library!

I just noticed warning util.pump() is deprecated. Use readableStream.pipe() instead.

i changed these lines, and it works!

/util.pump(this.stream, res, function() { console.log('Shhhart'); res.end(); });/

this.stream.getCurrent().pipe(res, function() { console.log('Shhhart'); res.end(); }); }

ghost avatar Apr 04 '15 11:04 ghost

If you create a pull request I'll merge it in.

ncb000gt avatar Apr 06 '15 14:04 ncb000gt