A JSEP plugin for adding spread expression support. Allows expressions of the form:
jsep('fn(1, ...a)');
jsep('{ ...a }');
jsep('[...a]');
npm install @jsep-plugin/spread
# or
yarn add @jsep-plugin/spread
import jsep from 'jsep';
import jsepSpread from '@jsep-plugin/spread';
jsep.plugins.register(jsepSpread);