mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @param {import('postcss').AtRule} atRule
|
|
* @returns {string}
|
|
*/
|
|
module.exports = function getAtRuleParams(atRule) {
|
|
return atRule.raws.params?.raw ?? atRule.params;
|
|
};
|