mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-03 00:06:40 +00:00
25 lines
572 B
JavaScript
25 lines
572 B
JavaScript
|
|
function gEncodeToHTML(str)
|
|
{
|
|
if (typeof str !== 'string')
|
|
return str;
|
|
|
|
return str.replace(/&/g, '&')
|
|
.replace(/</g, '<')
|
|
.replace(/>/g, '>')
|
|
.replace(/"/g, '"')
|
|
.replace(/'/g, ''');
|
|
}
|
|
|
|
function gDecodeFromHTML(str)
|
|
{
|
|
if (typeof str !== 'string')
|
|
return str;
|
|
|
|
return str.replace(/'/g, "'")
|
|
.replace(/"/g, '"')
|
|
.replace(/>/g, '>')
|
|
.replace(/</g, '<')
|
|
.replace(/&/g, '&');
|
|
}
|