UNPKG

twreporter-react

Version:

React-Redux site for The Reporter Foundation in Taiwan

16 lines (12 loc) 288 B
var isStream = require('./isStream'); module.exports = function(stream) { if (!isStream(stream)) { return; } var streamType = stream.constructor.name; // Avoid StreamStream if (streamType === 'Stream') { streamType = ''; } return '<' + streamType + 'Stream>'; };