A JSEP plugin for adding comment expression support. Allows expressions of the form:
jsep('a = 2 // end of line comment');
jsep('a /* ignore this */ += 2');
jsep('a /* ignore \n this */ ++');
npm install @jsep-plugin/comment
# or
yarn add @jsep-plugin/comment
import jsep from 'jsep';
import jsepComment from '@jsep-plugin/comment';
jsep.plugins.register(jsepComment);