blob: 04882b497ac559c43702107ded67f19ed390c366 [file] [log] [blame]
'use strict';
function isStream(stream) {
if (!stream) {
return false;
}
if (typeof stream.pipe !== 'function') {
return false;
}
return true;
}
module.exports = isStream;