/**
  * Wrapper method for t3lib_div::removeXSS() or \TYPO3\CMS\Core\Utility\GeneralUtility::removeXSS()
  *
  * @param string $string Input string
  * @return string Input string with potential XSS code removed
  */
 public static function removeXSS($string)
 {
     return Tx_Rnbase_Utility_Strings::removeXSS($string);
 }