module.exports = { encodeHtml: function ( str, br ) { str = ( str + "" ).replace(/&/g, "&") .replace(//g, ">") .replace(/"/g, """) .replace(/'/g, "'") ; if( br ) str = str.replace( /\n/g, "" ); return str; } }