(e)
| 27 | } |
| 28 | }, |
| 29 | encodeHTML = (e) => |
| 30 | e.replace(/([\u00A0-\u9999<>&])(.|$)/g, function (e, a, t) { |
| 31 | return "&" !== a || "#" !== t |
| 32 | ? (/[\u00A0-\u9999<>&]/.test(t) && (t = "&#" + t.charCodeAt(0) + ";"), |
| 33 | "&#" + a.charCodeAt(0) + ";" + t) |
| 34 | : e; |
| 35 | }), |
| 36 | checkExit = (e) => { |
| 37 | try { |
| 38 | return e(); |