mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
10 lines
177 B
JavaScript
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;
|