stylelint
Version:
A mighty, modern CSS linter.
13 lines (11 loc) • 322 B
JavaScript
/* @flow */
;
/**
* 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);
};