smartfile/index.js
Philipp Kunz 39cd77ef7c initial
2015-11-03 19:57:29 +01:00

11 lines
358 B
JavaScript

/// <reference path="typings/tsd.d.ts" />
var through = require("through2");
var 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);
});
};