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