blob: 9327b97e626a6f2e856a8aa62740e25001a3d214 [file] [log] [blame]
/* @flow */
"use strict";
/**
* 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(string /*: string*/) /*: boolean*/ {
return /{.+?}/.test(string);
};