A JSEP plugin for adding assignment expression support. Allows expressions of the form:
jsep('a = 2');
jsep('a += 2');
jsep('a++');
jsep('--aa');
npm install @jsep-plugin/assignment
# or
yarn add @jsep-plugin/assignment
import jsep from 'jsep';
import jsepAssignment from '@jsep-plugin/assignment';
jsep.plugins.register(jsepAssignment);