Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/chromium/4580
/
.
/
node_modules
/
stylelint
/
lib
/
utils
/
getDeclarationValue.js
blob: e8bc5d183073aa8ba0abc6ae66482d4c273f88de [
file
] [
edit
]
'use strict'
;
const
_
=
require
(
'lodash'
);
/**
* @param {import('postcss').Declaration} decl
* @returns {string}
*/
module
.
exports
=
function
getDeclarationValue
(
decl
)
{
return
_
.
get
(
decl
,
'raws.value.raw'
,
decl
.
value
);
};