docxtemplater
Version:
Generate docx, pptx, and xlsx from templates (Word, Powerpoint and Excel documents), from Node.js, the Browser and the command line
16 lines (13 loc) • 438 B
JavaScript
const expressions = require("./expressions.js");
const exportedValue = expressions.configure({
useProxy: false,
});
exportedValue.configure = (config = {}) => {
config.useProxy = false;
return expressions.configure(config);
};
exportedValue.filters = expressions.filters;
exportedValue.compile = expressions.compile;
exportedValue.Parser = expressions.Parser;
exportedValue.Lexer = expressions.Lexer;
module.exports = exportedValue;