A JSEP plugin for adding template literal expression support. Allows expressions of the form:
jsep('`hi ${name}`');
jsep('msg`hi ${name}`');
npm install @jsep-plugin/template
# or
yarn add @jsep-plugin/template
import jsep from 'jsep';
import jsepTemplateLiteral from '@jsep-plugin/template';
jsep.plugins.register(jsepTemplateLiteral);