epiphany/node_modules/stylelint/lib/utils/hasPsvInterpolation.js
2023-12-09 22:48:07 -08:00

12 lines
263 B
JavaScript

'use strict';
const HAS_PSV_INTERPOLATION = /\$\(.+?\)/;
/**
* Check whether a string has postcss-simple-vars interpolation
*
* @param {string} string
*/
module.exports = function hasPsvInterpolation(string) {
return HAS_PSV_INTERPOLATION.test(string);
};