summaryrefslogtreecommitdiff
path: root/node_modules/gulp-zip/node_modules/gulp-util/lib/combine.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/gulp-zip/node_modules/gulp-util/lib/combine.js')
-rw-r--r--node_modules/gulp-zip/node_modules/gulp-util/lib/combine.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/node_modules/gulp-zip/node_modules/gulp-util/lib/combine.js b/node_modules/gulp-zip/node_modules/gulp-util/lib/combine.js
deleted file mode 100644
index f20712d20..000000000
--- a/node_modules/gulp-zip/node_modules/gulp-util/lib/combine.js
+++ /dev/null
@@ -1,11 +0,0 @@
-var pipeline = require('multipipe');
-
-module.exports = function(){
- var args = arguments;
- if (args.length === 1 && Array.isArray(args[0])) {
- args = args[0];
- }
- return function(){
- return pipeline.apply(pipeline, args);
- };
-};