blob: 700afb6866fef71499ba07892d55c7bb37ac77e5 [file] [log] [blame]
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);
}