Skip to content

Instantly share code, notes, and snippets.

@yocontra
Created April 1, 2014 23:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yocontra/9925277 to your computer and use it in GitHub Desktop.
Save yocontra/9925277 to your computer and use it in GitHub Desktop.
'use strict';
var through = require('through2');
module.exports = function () {
return through.obj(function(file, enc, cb) {
cb(null, file.clone());
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment