MatthiasMullie\Minify\JS::stripComments PHP 메소드

stripComments() 보호된 메소드

Strip comments from source code.
protected stripComments ( )
    protected function stripComments()
    {
        // single-line comments
        $this->registerPattern('/\\/\\/.*$/m', '');
        // multi-line comments
        $this->registerPattern('/\\/\\*.*?\\*\\//s', '');
    }