Initial commit
[yaffs-website] / node_modules / vinyl / lib / isStream.js
1 var Stream = require('stream').Stream;
2
3 module.exports = function(o) {
4   return !!o && o instanceof Stream;
5 };