itheima-szy-data
Version:
``` npm install itheima-szy-data ```
34 lines (32 loc) • 809 B
JavaScript
function htmlEscape(htmlstr){
return htmlstr.replace(/<|>|“|&/g,match => {
switch (match){
case '<' :
return '<'
case '>' :
return '>'
case '"' :
return '"'
case '&' :
return '&'
}
})
}
function htmlUnEscape(htmlstr){
return htmlstr.replace(/<|>|"|&/g,match => {
switch (match){
case '<' :
return '<'
case '>' :
return '>'
case '"' :
return '"'
case '&' :
return '&'
}
})
}
module.exports= {
htmlEscape ,
htmlUnEscape
} ;