mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-04-06 22:31:08 +02:00
14 lines
319 B
JavaScript
14 lines
319 B
JavaScript
var compactable = require('./compactable');
|
|
|
|
function restoreWithComponents(property) {
|
|
var descriptor = compactable[property.name];
|
|
|
|
if (descriptor && descriptor.shorthand) {
|
|
return descriptor.restore(property, compactable);
|
|
} else {
|
|
return property.value;
|
|
}
|
|
}
|
|
|
|
module.exports = restoreWithComponents;
|