mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 10:08:35 +00: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;
|