7fife-backend/node_modules/underscore/modules/templateSettings.js

10 lines
305 B
JavaScript
Raw Permalink Normal View History

2024-03-07 13:01:44 +00:00
import _ from './underscore.js';
// By default, Underscore uses ERB-style template delimiters. Change the
// following template settings to use alternative delimiters.
export default _.templateSettings = {
evaluate: /<%([\s\S]+?)%>/g,
interpolate: /<%=([\s\S]+?)%>/g,
escape: /<%-([\s\S]+?)%>/g
};