UNPKG

stylelint-scss

Version:

A collection of SCSS-specific rules for Stylelint

12 lines (10 loc) 207 B
"use strict"; /** * Get an at rule's base name * * @param {AtRule} atRule * @return {string} The name */ module.exports = function (atRule) { return atRule.params.replace(/\([^)]*\)/, "").trim(); };