A JSEP plugin for adding regex expression support. Allows expressions of the form:
jsep('/abc/');
jsep('/abc/ig');
jsep('/[a-z]{3}/ig.test(a)');
npm install @jsep-plugin/regex
# or
yarn add @jsep-plugin/regex
import jsep from 'jsep';
import jsepRegex from '@jsep-plugin/regex';
jsep.plugins.register(jsepRegex);