mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-28 08:02:16 +08:00
18 lines
362 B
JavaScript
18 lines
362 B
JavaScript
/** @typedef {import('postcss').AtRule} AtRule */
|
|
|
|
/**
|
|
* @param {AtRule} atRule
|
|
* @param {string} params
|
|
* @returns {AtRule} The atRulearation that was passed in.
|
|
*/
|
|
export default function setAtRuleParams(atRule, params) {
|
|
const raws = atRule.raws;
|
|
|
|
if (raws.params) {
|
|
raws.params.raw = params;
|
|
} else {
|
|
atRule.params = params;
|
|
}
|
|
|
|
return atRule;
|
|
}
|