wallet-core/node_modules/vinyl/lib/inspect-stream.js
2016-10-10 03:43:44 +02:00

20 lines
331 B
JavaScript

'use strict';
var isStream = require('is-stream');
function inspectStream(stream) {
if (!isStream(stream)) {
return;
}
var streamType = stream.constructor.name;
// Avoid StreamStream
if (streamType === 'Stream') {
streamType = '';
}
return '<' + streamType + 'Stream>';
}
module.exports = inspectStream;