feat: clash field viewer wip

This commit is contained in:
GyDi
2022-08-08 01:51:30 +08:00
parent 35de2334fb
commit 066b08040a
5 changed files with 212 additions and 12 deletions

View File

@@ -2,7 +2,7 @@
type TData = Record<string, any>;
export default function ignoreCase(data: TData): TData {
if (!data) return data;
if (!data) return {};
const newData = {} as TData;