UNPKG

twing

Version:

First-class Twig engine for Node.js

9 lines (8 loc) 389 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createFunctionNode = void 0; const call_1 = require("../call"); const createFunctionNode = (functionName, functionArguments, line, column) => { return (0, call_1.createBaseCallNode)("function", functionName, null, functionArguments, line, column); }; exports.createFunctionNode = createFunctionNode;