UNPKG

stylelint-scss

Version:

A collection of SCSS-specific rules for Stylelint

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