UNPKG

stylelint-scss

Version:

A collection of SCSS-specific rules for Stylelint

9 lines (8 loc) 182 B
/** * Check whether a string has scss interpolation * * @param {string} string */ export default function hasScssInterpolation(string) { return /#\{[\s\S]*?\}/.test(string); }