1
0
mirror of https://gitlab.com/octtspacc/staticoso synced 2025-05-02 10:39:05 +02:00

10 lines
177 B
JavaScript

function tidyAtRule(value) {
return value
.replace(/\s+/g, ' ')
.replace(/url\(\s+/g, 'url(')
.replace(/\s+\)/g, ')')
.trim();
}
module.exports = tidyAtRule;