blob: 7e56516b69dbde350e1eb39381ab865b977ee50c [file] [log] [blame]
'use strict';
/**
* @param {import('postcss').AtRule} atRule
* @returns {string}
*/
module.exports = function getAtRuleParams(atRule) {
const raws = atRule.raws;
return (raws.params && raws.params.raw) || atRule.params;
};