module.exports = { URLRegex: /https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/g, clearContent: (content) => { if (!content) return ""; return content.replaceAll("&", "&") .replaceAll("<", "<").replaceAll(">", ">") .replaceAll("\"", """).replaceAll("'", "'") .replaceAll("\n", "
"); } }