mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 17:19:08 +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;
|