diff --git a/src/web/utils/tools.ts b/src/web/utils/tools.ts index 649f79cd..450f017e 100644 --- a/src/web/utils/tools.ts +++ b/src/web/utils/tools.ts @@ -1,16 +1,14 @@ /** * @file web utils tools.ts * @description 应用用到的工具函数 - * @author BTMuli - * @since Alpha v0.2.0 + * @since Beta v0.3.3 */ -// TauriGenshin import TGConstant from "../constant/TGConstant"; /** * @description 转义正则表达式 - * @since Alpha v0.1.2 + * @since Beta v0.3.3 * @param {string} data 内容 * @returns {string} 转义后的内容 */ @@ -21,7 +19,8 @@ export function decodeRegExp(data: string): string { res = res.replace(/>/g, ">"); res = res.replace(/ /g, " "); res = res.replace(/'/g, "'"); - res = res.replace(/"/g, '"'); + // eslint-disable-next-line @typescript-eslint/quotes + res = res.replace(/"/g, `"`); res = res.replace(/'/g, "'"); res = res.replace(/&/g, "&"); return res;