mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-12-08 04:28:49 +00:00
6 lines
111 B
JavaScript
Executable File
6 lines
111 B
JavaScript
Executable File
var Stream = require('stream').Stream;
|
|
|
|
module.exports = function(o) {
|
|
return !!o && o instanceof Stream;
|
|
};
|