function zh(html){
if(typeof html==='string'){
return html.replace(/<|>|&|"/g,m=>{
switch(m){
case '<':
return '<'
case '>':
return '>'
case '&':
return '&'
case '"':
return '"'
}
})
}else{
return '请输入字符串'
}
}
module.exports={
zh
}