UNPKG

wecui

Version:

一款基于Vue2.x版本的移动端web组件

12 lines (8 loc) 264 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>'; };