blob: eaf17c8776083c4175e2201f9bcd16025cd0def7 [file] [log] [blame]
'use strict';
/** @typedef {import('postcss').AtRule} AtRule */
/**
* @param {AtRule} atRule
* @param {string} params
* @returns {AtRule} The atRulearation that was passed in.
*/
module.exports = function setAtRuleParams(atRule, params) {
const raws = atRule.raws;
if (raws.params) {
raws.params.raw = params;
} else {
atRule.params = params;
}
return atRule;
};