fix: lint

This commit is contained in:
xingyu4j
2025-10-21 17:45:43 +08:00
parent 5203b991de
commit 80545f973a

View File

@@ -67,7 +67,7 @@ export function getUrlValue(
if (!urlStr || !key) return '';
const url = new URL(decodeURIComponent(urlStr));
return url.searchParams.get(key) ?? '';
};
}
/**
* 将值复制到目标对象且以目标对象属性为准target: {a:1} source:{a:2,b:3} 结果为:{a:2}