LyteNyte Grid logo for light mode. Links back to the documentation home page.
Github repository for this project. 1771 Technologies home page
Grid Utility Functions

Expressions

Configure, parse, evaluate, and extend expressions with the LyteNyte Grid expressions API.

Evaluator

Evaluator is the entry point for the expression engine. Instantiate it once with an optional plugin array and reuse it for all evaluations.

import { Evaluator, standardPlugins } from "@1771technologies/lytenyte-pro/expressions";
const evaluator = new Evaluator(standardPlugins);

Constructor

Prop

Methods

Prop

RunOptions

Options accepted by Evaluator.run as its third argument.

Prop

Plugin

An object that extends one or more stages of the evaluator pipeline. Every field is optional; implement only the hooks your plugin needs. Return null from any hook to signal “not handled” and let the evaluator try the next plugin.

Prop