summaryrefslogtreecommitdiff
path: root/node_modules/gulp-json-transform/node_modules/vinyl/lib/isStream.js
blob: 9ce0929b0349da418c8e952165dde494f2a1dc44 (plain)
1
2
3
4
5
var Stream = require('stream').Stream;

module.exports = function(o) {
  return !!o && o instanceof Stream;
};