MatthiasMullie\Minify\JS::stripComments PHP Method

stripComments() protected method

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