huangluoxuan-tools
Version:
提供了时间格式化、HTMLEscape相关的功能
33 lines (32 loc) • 505 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
}