Files
szjs/node_modules/stylelint/lib/utils/hasScssInterpolation.mjs

12 lines
255 B
JavaScript
Raw Normal View History

2025-03-07 22:27:18 +08:00
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);
}