mirror of
https://github.com/renbaoshuo/UOJ-Luogu-RemoteJudge.git
synced 2024-12-12 03:46:31 +00:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
|
export default function htmlspecialchars(text) {
|
||
|
const map = {
|
||
|
'&': '&',
|
||
|
'<': '<',
|
||
|
'>': '>',
|
||
|
'"': '"',
|
||
|
"'": ''',
|
||
|
};
|
||
|
|
||
|
return text.replace(/[&<>"']/g, m => map[m]);
|
||
|
}
|