Files
air66-yourls-admin-theme/node_modules/vinyl/lib/inspect-stream.js

14 lines
249 B
JavaScript
Raw Normal View History

2019-07-24 18:16:32 +01:00
'use strict';
function inspectStream(stream) {
var streamType = stream.constructor.name;
// Avoid StreamStream
if (streamType === 'Stream') {
streamType = '';
}
return '<' + streamType + 'Stream>';
}
module.exports = inspectStream;