10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
|
|
/**
|
||
|
|
* @param {import('postcss').Declaration} decl
|
||
|
|
* @returns {string}
|
||
|
|
*/
|
||
|
|
export default function getDeclarationValue(decl) {
|
||
|
|
const raws = decl.raws;
|
||
|
|
|
||
|
|
return (raws.value && raws.value.raw) || decl.value;
|
||
|
|
}
|