gulp-function/index.js
2015-10-25 20:02:14 +01:00

12 lines
343 B
JavaScript

/// <reference path="typings/tsd.d.ts" />
var path, through;
through = require("through2");
path = require("path");
module.exports = function (jsonObject, type) {
if (type === void 0) { type = undefined; }
return through.obj(function (file, enc, cb) {
//tell gulp that we are complete
return cb(null, file);
});
};