You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

inspect-stream.js 249B

12345678910111213
  1. 'use strict';
  2. function inspectStream(stream) {
  3. var streamType = stream.constructor.name;
  4. // Avoid StreamStream
  5. if (streamType === 'Stream') {
  6. streamType = '';
  7. }
  8. return '<' + streamType + 'Stream>';
  9. }
  10. module.exports = inspectStream;