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
# Remove one value from array
# INPUT
[1,2,3]
# SCRIPT
if KEY == "[2]" then
unset()
end
# EXPECT
[1,2]
---
# Remove one value from object
# INPUT
{
"foo": {
"bar": 123,
"stay": true
}
}
# SCRIPT
if KEY == "foo.bar" then
unset()
end
# EXPECT
{"foo":{"stay":true}}
---
# Remove a whole object
# INPUT
{
"foo": {
"bar": {
"some_object": {
"a": "b",
"c": "d",
"some_list": [
1,
2,
3
]
}
},
"stay": true
}
}
# SCRIPT
if KEY == "foo.bar.some_object" then
unset()
end
# EXPECT
{"foo":{"bar":{},"stay":true}}