UNPKG

stylelint-scss

Version:

A collection of SCSS-specific rules for Stylelint

9 lines (8 loc) 197 B
/** * Check whether a string has postcss-simple-vars interpolation * * @param {string} string */ export default function hasPsvInterpolation(string) { return /\$\([\s\S]*?\)/.test(string); }