mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @param {import('postcss').Declaration} decl
|
|
* @returns {string}
|
|
*/
|
|
module.exports = function getDeclarationValue(decl) {
|
|
const raws = decl.raws;
|
|
|
|
return (raws.value && raws.value.raw) || decl.value;
|
|
};
|