1
0
mirror of https://github.com/renbaoshuo/UOJ-Luogu-RemoteJudge.git synced 2024-09-20 23:45:27 +00:00
UOJ-Luogu-RemoteJudge/luogu_remote_judger/utils/htmlspecialchars.js

12 lines
211 B
JavaScript

export default function htmlspecialchars(text) {
const map = {
'&': '&',
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
"'": '&#039;',
};
return text.replace(/[&<>"']/g, m => map[m]);
}