blob: b0e2f6c7e212f6373353eef8ab7ae3cab100b466 [file] [log] [blame]
const HAS_SCSS_INTERPOLATION = /#\{.+?\}/s;
/**
* Check whether a string has scss interpolation
*
* @param {string} string
* @returns {boolean}
*/
export default function hasScssInterpolation(string) {
return HAS_SCSS_INTERPOLATION.test(string);
}