UNPKG

twing

Version:

First-class Twig engine for Node.js

12 lines (11 loc) 429 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createParentFunctionNode = void 0; const expression_1 = require("../expression"); const createParentFunctionNode = (name, line, column) => { return (0, expression_1.createBaseExpressionNode)("parent_function", { name, //output: false }, {}, line, column); }; exports.createParentFunctionNode = createParentFunctionNode;