Files
OliveTin/frontend/node_modules/stylelint/lib/utils/hasScssInterpolation.mjs

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