Blame view

node_modules/clean-css/lib/optimizer/level-1/tidy-block.js 691 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  var SUPPORTED_COMPACT_BLOCK_MATCHER = /^@media\W/;
  
  function tidyBlock(values, spaceAfterClosingBrace) {
    var withoutSpaceAfterClosingBrace;
    var i;
  
    for (i = values.length - 1; i >= 0; i--) {
      withoutSpaceAfterClosingBrace = !spaceAfterClosingBrace && SUPPORTED_COMPACT_BLOCK_MATCHER.test(values[i][1]);
  
      values[i][1] = values[i][1]
        .replace(/\n|\r\n/g, ' ')
        .replace(/\s+/g, ' ')
        .replace(/(,|:|\() /g, '$1')
        .replace(/ \)/g, ')')
        .replace(/'([a-zA-Z][a-zA-Z\d\-_]+)'/, '$1')
        .replace(/"([a-zA-Z][a-zA-Z\d\-_]+)"/, '$1')
        .replace(withoutSpaceAfterClosingBrace ? /\) /g : null, ')');
    }
  
    return values;
  }
  
  module.exports = tidyBlock;