UNPKG

stylelint-scss

Version:

A collection of SCSS-specific rules for Stylelint

11 lines (9 loc) 178 B
"use strict"; /** * Check whether a string has scss interpolation * * @param {string} string */ module.exports = function (string) { return /#{[\s\S]*?}/.test(string); };