first commit
This commit is contained in:
9
node_modules/stylelint/lib/utils/getDeclarationValue.mjs
generated
vendored
Normal file
9
node_modules/stylelint/lib/utils/getDeclarationValue.mjs
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* @param {import('postcss').Declaration} decl
|
||||
* @returns {string}
|
||||
*/
|
||||
export default function getDeclarationValue(decl) {
|
||||
const raws = decl.raws;
|
||||
|
||||
return (raws.value && raws.value.raw) || decl.value;
|
||||
}
|
||||
Reference in New Issue
Block a user