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