fastpipe
Create nested streams, similar to lazypipe but one-use only.
Usage
var fastpipe = ; // ... // Put pipes inside of a function if they need to be used more than once { return ;} // Enables easy customization by passing in config information, unlike lazypipe { return ; ;} gulp; gulp; // Do NOT do this, fastpipe instances are one-use only. They must be defined// in a function for multiple uses.var bigNoNo = gulp; // This, however, would be okay. It's just weird because in this case, there is// no reason to nest the stream.gulp;
Contributing
Pull requests welcome. If you find any bugs, please submit an issue on GitHub.