tidy-at-rule.js 177 B

123456789
  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. module.exports = tidyAtRule;