FluidTYPO3\Vhs\ViewHelpers\Format\RemoveXssViewHelper::render PHP Method

render() public method

Removes XSS from string
public render ( string $string = null ) : string
$string string
return string
    public function render($string = null)
    {
        if (null === $string) {
            $string = $this->renderChildren();
        }
        return GeneralUtility::removeXSS($string);
    }
RemoveXssViewHelper