node-shoutcast
node-shoutcast copied to clipboard
util.pump() is deprecated. Use readableStream.pipe() instead.
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(); }); }
If you create a pull request I'll merge it in.