2016-10-10 03:43:44 +02:00
|
|
|
/**
|
2018-09-20 02:56:13 +02:00
|
|
|
* lodash 3.0.0 (Custom Build) <https://lodash.com/>
|
|
|
|
* Build: `lodash modern modularize exports="npm" -o ./`
|
|
|
|
* Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
|
|
|
|
* Based on Underscore.js 1.7.0 <http://underscorejs.org/LICENSE>
|
|
|
|
* Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
|
|
* Available under MIT license <https://lodash.com/license>
|
2016-10-10 03:43:44 +02:00
|
|
|
*/
|
|
|
|
|
2018-09-20 02:56:13 +02:00
|
|
|
/** Used to match template delimiters. */
|
2016-10-10 03:43:44 +02:00
|
|
|
var reInterpolate = /<%=([\s\S]+?)%>/g;
|
|
|
|
|
|
|
|
module.exports = reInterpolate;
|