Skip to content

Commit

Permalink
fix: linkage relationship data condition judgment failed (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
katherinehhh authored and Dunqing committed Apr 17, 2023
1 parent 3b97848 commit a6c14dd
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,18 @@ http://ricostacruz.com/cheatsheets/umdjs.html
$lte: function (a, b, c) {
return c === undefined ? a <= b : a <= b && b <= c;
},
$exists: function (a) {
return jsonLogic.truthy(a);
},
$notEmpty: function (a) {
return jsonLogic.truthy(a);
},
$empty: function (a) {
return !jsonLogic.truthy(a);
},
$notExists: function (a) {
return !jsonLogic.truthy(a);
},
'%': function (a, b) {
return a % b;
},
Expand Down

0 comments on commit a6c14dd

Please sign in to comment.