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

12 lines
267 B
JavaScript

const HAS_PSV_INTERPOLATION = /\$\(.+?\)/;
/**
* Check whether a string has postcss-simple-vars interpolation
*
* @param {string} string
* @returns {boolean}
*/
export default function hasPsvInterpolation(string) {
return HAS_PSV_INTERPOLATION.test(string);
}