jexl-to-string
v2.3.4
Published
Convert a Jexl expression AST back to a string
Downloads
349
Readme
jexl-to-string
Convert a Jexl Abstract Syntax Tree (AST) back to a string expression.
Installation
NPM:
npm install --save jexl-to-string
Yarn:
yarn add jexl-to-string
Example
import { jexlExpressionStringFromAst } from "jexl-to-string";
import { Jexl } from "jexl";
const jexl = new Jexl();
const compiledExpression = jexl.compile(input);
const newExpression = jexlExpressionStringFromAst(
jexl._grammar,
compiledExpression._getAst()
);