gulp-function/ts/index.ts

15 lines
303 B
TypeScript
Raw Normal View History

2015-09-17 20:58:19 +00:00
/// <reference path="typings/tsd.d.ts" />
var path, through;
through = require("through2");
path = require("path");
module.exports = (jsonObject,type = undefined) => {
return through.obj((file, enc, cb) => {
//tell gulp that we are complete
return cb(null, file);
});
};