📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 07:15:51
📂
/ (Root)
/
home
/
xeqi7597
/
cds.claireduwig.com
/
wp-content
/
plugins
/
generateblocks
/
src
/
utils
📍 /home/xeqi7597/cds.claireduwig.com/wp-content/plugins/generateblocks/src/utils
🔄 Refresh
✏️
Editing: sanitizeHtmlAttribute.js
Writable
export const sanitizeHtmlAttribute = ( value ) => { if ( null === value || undefined === value ) { return ''; } let stringValue = ''; if ( 'object' === typeof value ) { try { stringValue = JSON.stringify( value ); } catch ( e ) { return ''; } } else { stringValue = String( value ); } // Replace characters like &, <, >, " with their HTML entity equivalents return stringValue .replace( /&/g, '&' ) .replace( /</g, '<' ) .replace( />/g, '>' ) .replace( /"/g, '"' ) .replace( /'/g, ''' ); };
💾 Save Changes
❌ Cancel