An open API service indexing awesome lists of open source software.

https://github.com/detectivequack/gulp-pipe-fn

Pipe a function in gulp
https://github.com/detectivequack/gulp-pipe-fn

Last synced: 3 months ago
JSON representation

Pipe a function in gulp

Awesome Lists containing this project

README

        

Invoke a function in a gulp.pipe.

# Usage
```javascript
const gulp = require('gulp'),
gulpPipeFn = require('gulp-pipe-fn');

gulp.task('default', () => {
return gulp.src(['./*'])
.pipe(gulpPipeFn((file, enc) => { console.log(file, enc) }));
});
```