UNPKG

ionic

Version:

A tool for creating and developing Ionic Framework mobile apps.

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>'; };