Home
last modified time | relevance | path

Searched refs:endNC (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/vendor/splitbrain/php-jsstrip/src/
H A DJSStrip.php83 $endNC = strpos($source, '/* END NOCOMPRESS */', $nextNC + 2);
85 if ($endNC === false) $this->fatal('Found invalid NOCOMPRESS comment');
86 if ($beginNC !== false && $beginNC < $endNC) {
91 $nextNC = $endNC;
96 $result .= "\n" . trim(substr($source, $idx + 22, $endNC - ($idx + 22))) . "\n"; // BEGIN comment = 22 chars
97 $idx = $endNC + 20; // END comment = 20 chars