a zip code crypto-currency system good for red ONLY

tidy-at-rule.js 177B

12345678910
  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;