A JSEP plugin for adding ternary expression support. Allows expressions of the form:
jsep('a ? 1 : 2');
npm install @jsep-plugin/ternary
# or
yarn add @jsep-plugin/ternary
import jsep from 'jsep';
import jsepTernary from '@jsep-plugin/ternary';
jsep.plugins.register(jsepTernary);