wallet-core/node_modules/vinyl/lib/inspect-stream.js

20 lines
331 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
'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;