DataSift\Storyplayer\OutputLib\CodeFormatter::stripComments PHP Method

stripComments() public static method

public static stripComments ( string $codeToPrint ) : string
$codeToPrint string
return string
    public static function stripComments($codeToPrint)
    {
        // now, strip out any comment lines
        $return = trim(preg_replace('|^(//.*)|m', '', $codeToPrint));
        // all done
        return $return;
    }