feat: clash field viewer wip

This commit is contained in:
GyDi
2022-08-08 01:51:30 +08:00
parent 7dd5ce1356
commit 630f877e95
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;