Optimize: Started work on an updated worker

This commit is contained in:
frikky
2021-01-11 18:53:17 +01:00
parent 63f8b1fda8
commit 43e228929e
10 changed files with 1306 additions and 596 deletions
+2 -1
View File
@@ -67,9 +67,10 @@ export const validateJson = (showResult) => {
}
}
const result = jsonvalid ? JSON.parse(showResult) : showResult
return {
"valid": jsonvalid,
"result": jsonvalid ? JSON.parse(showResult) : showResult,
"result": result,
}
}