smartlog-destination-local/ts/index.ts
2015-09-20 17:21:29 +00:00

15 lines
333 B
TypeScript

/// <reference path="typings/tsd.d.ts" />
var path, through;
through = require("through2");
path = require("path");
module.exports = (jadeTemplate,mojo = undefined) => {
return through.obj((file, enc, cb) => {
//run callback function to signal end of plugin process.
return cb(null, file);
});
};