コード例 #1
0
ファイル: Selector.php プロジェクト: MrHidalgo/css-crush
 public static function makeReadable($str)
 {
     $str = Selector::normalizeWhiteSpace($str);
     // Quick test for string tokens.
     if (strpos($str, '?s') !== false) {
         $str = Crush::$process->tokens->restore($str, 's');
     }
     return $str;
 }