mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
6 lines
111 B
JavaScript
6 lines
111 B
JavaScript
var Stream = require('stream').Stream;
|
|
|
|
module.exports = function(o) {
|
|
return !!o && o instanceof Stream;
|
|
};
|