14 lines
359 B
JavaScript
14 lines
359 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const HAS_TPL_INTERPOLATION = /\{.+?\}/;
|
||
|
|
||
|
/**
|
||
|
* Check whether a string has JS template literal interpolation or HTML-like template
|
||
|
*
|
||
|
* @param {string} string
|
||
|
* @return {boolean} If `true`, a string has template literal interpolation
|
||
|
*/
|
||
|
module.exports = function hasTplInterpolation(string) {
|
||
|
return HAS_TPL_INTERPOLATION.test(string);
|
||
|
};
|