Initial commit
[yaffs-website] / node_modules / gulp-util / lib / combine.js
1 var pipeline = require('multipipe');
2
3 module.exports = function(){
4   var args = arguments;
5   if (args.length === 1 && Array.isArray(args[0])) {
6     args = args[0];
7   }
8   return function(){
9     return pipeline.apply(pipeline, args);
10   };
11 };