mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 00:54:48 +08:00
18 lines
328 B
JavaScript
Executable File
18 lines
328 B
JavaScript
Executable File
// @ts-check
|
|
|
|
const div = document.createElement("div")
|
|
|
|
const tagReplacement = {
|
|
'&': '&',
|
|
'<': '<',
|
|
'>': '>',
|
|
"'": ''',
|
|
'"': '"'
|
|
}
|
|
|
|
function sanitizeText(value) {
|
|
return value.toString().replace(/[&<>'"]/g, tag => tagReplacement[tag])
|
|
}
|
|
|
|
export default sanitizeText
|