first commit

This commit is contained in:
s.golasch
2023-08-01 13:49:46 +02:00
commit 1fc239fd54
20238 changed files with 3112246 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
'use strict';
exports.__esModule = true;
exports.default = getParsed;
var _postcssValueParser = require('postcss-value-parser');
var _postcssValueParser2 = _interopRequireDefault(_postcssValueParser);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function getParsed(decl) {
var value = decl.value,
raws = decl.raws;
if (raws && raws.value && raws.value.raw) {
value = raws.value.raw;
}
return (0, _postcssValueParser2.default)(value);
}
module.exports = exports['default'];