subscript
Version:
Modular expression parser & evaluator
22 lines (18 loc) • 492 B
JavaScript
/**
* justin - eval aggregator
* Runtime handlers for justin dialect (must be paired with feature/justin.js).
*/
import './subscript.js';
import './op/identity.js';
import './op/nullish.js';
import './op/pow.js';
import './op/membership.js';
import './op/bitwise-unsigned.js';
import './op/assign-logical.js';
import './op/ternary.js';
import './op/arrow.js';
import './op/spread.js';
import './op/optional.js';
import './op/unary.js';
import './collection.js';
import './template.js';