v-wordpress-plugin-updater/node_modules/stylelint/lib/utils/hasScssInterpolation.mjs
2025-08-14 00:05:37 -04:00

11 lines
255 B
JavaScript

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);
}