Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
getDeclarationValue.mjs
blob: ca880d11ec5bce0345b03089e85a673f6ef4327f [
file
] [
log
] [
blame
]
/**
* @param {import('postcss').Declaration} decl
* @returns {string}
*/
export
default
function
getDeclarationValue
(
decl
)
{
const
raws
=
decl
.
raws
;
return
(
raws
.
value
&&
raws
.
value
.
raw
)
||
decl
.
value
;
}