数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
380 B

2 years ago
'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;
};