工匠基地官方网站
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
448 B

export function escapeHtml(str: string) {
let temp = '';
if (str.length === 0) return '';
temp = str.replace(/&/g, '&');
temp = temp.replace(/&lt;/g, '<');
temp = temp.replace(/&gt;/g, '>');
temp = temp.replace(/&nbsp;/g, ' ');
temp = temp.replace(/&#39;/g, "'");
temp = temp.replace(/&quot;/g, '"');
return temp;
}
export function isArray(str: unknown) {
return Object.prototype.toString.call(str) === '[object Array]';
}