blob: 211b8f3dc2e8cb1b2f1b3a36992e76e21be2810e [file] [log] [blame]
/**
* @param {import('postcss').AtRule} atRule
* @returns {string}
*/
export default function getAtRuleParams(atRule) {
return atRule.raws.params?.raw ?? atRule.params;
}