summaryrefslogtreecommitdiff
path: root/node_modules/gulp-tar/node_modules/vinyl/lib/inspectStream.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/gulp-tar/node_modules/vinyl/lib/inspectStream.js')
-rw-r--r--node_modules/gulp-tar/node_modules/vinyl/lib/inspectStream.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/node_modules/gulp-tar/node_modules/vinyl/lib/inspectStream.js b/node_modules/gulp-tar/node_modules/vinyl/lib/inspectStream.js
deleted file mode 100644
index d36df6ff6..000000000
--- a/node_modules/gulp-tar/node_modules/vinyl/lib/inspectStream.js
+++ /dev/null
@@ -1,11 +0,0 @@
-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>';
-};