source:
imaps-frontend/node_modules/clean-css/lib/optimizer/level-1/tidy-at-rule.js@
79a0317
Last change on this file since 79a0317 was 79a0317, checked in by , 4 days ago | |
---|---|
|
|
File size: 177 bytes |
Line | |
---|---|
1 | function tidyAtRule(value) { |
2 | return value |
3 | .replace(/\s+/g, ' ') |
4 | .replace(/url\(\s+/g, 'url(') |
5 | .replace(/\s+\)/g, ')') |
6 | .trim(); |
7 | } |
8 | |
9 | module.exports = tidyAtRule; |
Note:
See TracBrowser
for help on using the repository browser.