-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathjsDecode.json
107 lines (107 loc) · 2.1 KB
/
jsDecode.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[
{
"output" : "",
"ret" : 0,
"input" : "",
"name" : "jsDecode",
"type" : "tfn"
},
{
"output" : "TestCase",
"ret" : 0,
"type" : "tfn",
"input" : "TestCase",
"name" : "jsDecode"
},
{
"ret" : 0,
"input" : "Test\u0000Case",
"type" : "tfn",
"name" : "jsDecode",
"output" : "Test\u0000Case"
},
{
"input" : "\\\\a\\\\b\\\\f\\\\n\\\\r\\\\t\\\\v\\?\\'\\\"\\0\\12\\123\\x00\\xff",
"output" : "\\a\\b\\f\\n\\r\\t\\v?'\"\\x00\\x0a\\x53\\x00\\xff",
"ret" : 1,
"type" : "tfn",
"name" : "jsDecode"
},
{
"output" : "8966\\x0a\\x00\\x00\\x00\\x0a\\x0a\\x0a3u00a",
"input" : "8966\\x0a\\x00\\x00\\x00\\x0a\\x0a\\x0a3u00a",
"type" : "tfn",
"name" : "jsDecode",
"ret" : 1
},
{
"input" : "\\x",
"name" : "jsDecode",
"type" : "tfn",
"ret" : 1,
"output" : "x"
},
{
"output" : "xx0",
"ret" : 1,
"name" : "jsDecode",
"input" : "\\x\\x0",
"type" : "tfn"
},
{
"output" : "xx0\u0000",
"type" : "tfn",
"input" : "\\x\\x0\u0000",
"name" : "jsDecode",
"ret" : 1
},
{
"output" : "u",
"input" : "\\u",
"name" : "jsDecode",
"type" : "tfn",
"ret" : 1
},
{
"input" : "\\u\\u0",
"name" : "jsDecode",
"type" : "tfn",
"ret" : 1,
"output" : "uu0"
},
{
"ret" : 1,
"type" : "tfn",
"input" : "\\u\\u0\\u01",
"name" : "jsDecode",
"output" : "uu0u01"
},
{
"input" : "\\u\\u0\\u01\\u012",
"type" : "tfn",
"name" : "jsDecode",
"ret" : 1,
"output" : "uu0u01u012"
},
{
"ret" : 1,
"input" : "\\u\\u0\\u01\\u012\u0000",
"type" : "tfn",
"name" : "jsDecode",
"output" : "uu0u01u012\u0000"
},
{
"input" : "\\",
"type" : "tfn",
"name" : "jsDecode",
"ret" : 0,
"output" : "\\"
},
{
"output" : "\\0",
"ret" : 1,
"input" : "\\\\0",
"type" : "tfn",
"name" : "jsDecode"
}
]