mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-29 10:00:49 +08:00
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
/**
|
|
* @param {import('postcss').AtRule} atRule
|
|
* @returns {string}
|
|
*/
|
|
export default function getAtRuleParams(atRule) {
|
|
return atRule.raws.params?.raw ?? atRule.params;
|
|
}
|