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
[
"# These are some tests from https://github.com/TotalTechGeek/json-logic-engine/commit/9125e91b5137938a8319de1103b0ebc5819e54e1",
{
"description": "Rule array with val",
"rule": [
1,
{
"val": "x"
},
3
],
"data": {
"x": 2
},
"result": [
1,
2,
3
]
},
{
"description": "If Operator fetching both condition and consequent from data",
"rule": {
"if": [
{
"val": "x"
},
[
{
"val": "y"
}
],
99
]
},
"data": {
"x": true,
"y": 42
},
"result": [
42
]
},
{
"description": "Reduce Operator with val",
"rule": {
"reduce": [
{
"val": "integers"
},
{
"+": [
{
"val": "current"
},
{
"val": "accumulator"
}
]
},
{
"val": "start_with"
}
]
},
"data": {
"integers": [
1,
2,
3,
4
],
"start_with": 59
},
"result": 69
},
{
"description": "Simple Inlineable Val Chained",
"rule": {
"val": {
"cat": [
"te",
"st"
]
}
},
"data": {
"test": 1
},
"result": 1
}
]