D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
lib
/
node_modules
/
gulp
/
node_modules
/
vinyl
/
lib
/
Filename :
inspect-stream.js
back
Copy
'use strict'; function inspectStream(stream) { var streamType = stream.constructor.name; // Avoid StreamStream if (streamType === 'Stream') { streamType = ''; } return '<' + streamType + 'Stream>'; } module.exports = inspectStream;