twing
Version:
First-class Twig engine for Node.js
11 lines (10 loc) • 335 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createLineNode = void 0;
const node_1 = require("../node");
const createLineNode = (data, line, column, tag) => {
return (0, node_1.createBaseNode)("line", {
data
}, {}, line, column, tag);
};
exports.createLineNode = createLineNode;