xxm-test-js
Version:
xxm-js通用js工具(utils)库
11 lines (10 loc) • 402 B
TypeScript
/**
* 将经过 HTML 转义的字符串进行反转义
* @param {string | null | undefined} str - 要反转义的字符串,可为 null 或 undefined
* @returns {string} 反转义后的字符串
* @example
* ```js
* htmlUnescape('Hello & World < Example >') // 返回 'Hello & World < Example >'
* ```
*/
export declare function htmlUnescape(str: string | null | undefined): string;