djLint/docs/node_modules/transfob
2021-12-14 09:57:37 +01:00
..
package.json also exclude nunj and musta 2021-12-14 09:57:37 +01:00
README.md also exclude nunj and musta 2021-12-14 09:57:37 +01:00
transfob.js also exclude nunj and musta 2021-12-14 09:57:37 +01:00

transfob

Get a transform stream, like through2.obj(). Useful for gulp tasks where you want to iterate over files.

var transfob = require('transfob');

// convert files to JS object
var data = {};

gulp.task( 'data', function() {
  return gulp.src('data/*.md')
    .pipe( transfob( function( file, enc, next ) {
      var basename = path.basename( file.path, path.extname( file.path ) );
      data[ file.path ] = file.contents.toString();
      next( null, file );
    }) );
});