Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

tidy-at-rule.js 177B

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;