aboutsummaryrefslogtreecommitdiff
path: root/node_modules/stream-consume/index.js
blob: 122edb18a783bb41f25d5328a0347bda147c3a4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = function(stream) {
    if (stream.readable && typeof stream.resume === 'function') {
        var state = stream._readableState;
        if (!state || state.pipesCount === 0) {
            // Either a classic stream or streams2 that's not piped to another destination
            try {
                stream.resume();
            } catch (err) {
                console.error("Got error: " + err);
                // If we can't, it's not worth dying over
            }
        }
    }
};