stylelint-scss
Version:
A collection of SCSS-specific rules for Stylelint
19 lines (15 loc) • 330 B
JavaScript
/**
* Get the index of a media query's params
*
* @param {AtRule} atRule
* @return {int} The index
*/
module.exports = function (atRule) {
// Initial 1 is for the `@`
let index = 1 + atRule.name.length;
if (atRule.raw("afterName")) {
index += atRule.raw("afterName").length;
}
return index;
};
;