-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnescapeJSON.js
49 lines (43 loc) · 1.14 KB
/
UnescapeJSON.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
{
"api":1,
"name":"Unescape JSON String",
"description":"Removes escape characters from JSON string",
"author":"Tahsin",
"icon":"table",
"tags":"json,unescape,escape"
}
**/
const unescapeJSONString = (serializedJsonString) => {
var deserializedJsonString = serializedJsonString
.replace(/(\\n)/g, "")
.replace(/(\\r)/g, "")
.replace(/(\\t)/g, "")
.replace(/(\\f)/g, "")
.replace(/(\\b)/g, "")
.replace(/(\")/g, '"')
.replace(/("{)/g, "{")
.replace(/(}")/g, "}")
.replace(/(\\)/g, "")
.replace(/(\/)/g, "/");
return deserializedJsonString;
};
function main(state) {
let input = state.fullText;
try {
try {
JSON.parse(input);
} catch (error) {
if (!input.startsWith('"')) input = `"${input}`;
if (!input.endsWith('"')) input = `${input}"`;
JSON.parse(input);
}
state.fullText = unescapeJSONString(input);
state.postInfo("JSON is unescapped!");
} catch (error) {
let msg = "Something went wrong!";
if (error instanceof SyntaxError) msg = "Invalid JSON";
else msg = `${error.name}-${error.message}`;
state.postError(msg);
}
}