added gitignore

This commit is contained in:
Kasper Rynning-Tønnesen
2015-11-29 13:38:52 +01:00
parent 95bb0c3919
commit fbb9f9b745
3868 changed files with 12 additions and 11 deletions

15
node_modules/gulp-util/lib/buffer.js generated vendored Executable file
View File

@@ -0,0 +1,15 @@
var through = require('through2');
module.exports = function(fn) {
var buf = [];
var end = function(cb) {
this.push(buf);
cb();
if(fn) fn(null, buf);
};
var push = function(data, enc, cb) {
buf.push(data);
cb();
};
return through.obj(push, end);
};