source:
imaps-frontend/node_modules/clean-css/lib/optimizer/level-1/tidy-at-rule.js
Last change on this file was 79a0317, checked in by , 5 days ago | |
---|---|
|
|
File size: 177 bytes |
Rev | Line | |
---|---|---|
[79a0317] | 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.