Files
szjs/node_modules/stylelint/lib/utils/hasScssInterpolation.mjs
2025-03-07 22:27:18 +08:00

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