@legalplace/lplogic 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/LpLogic.d.ts +2 -1
- package/dist/LpLogic.js +1 -4
- package/package.json +1 -1
package/dist/LpLogic.d.ts
CHANGED
package/dist/LpLogic.js
CHANGED
|
@@ -190,8 +190,5 @@ var notLike = function (values, comparator, parents) {
|
|
|
190
190
|
return reducedValues.length === filter.length;
|
|
191
191
|
};
|
|
192
192
|
json_logic_js_1.default.add_operation("not-like", notLike);
|
|
193
|
-
var LpLogic =
|
|
194
|
-
console.log("Condition", { logic: logic, data: data });
|
|
195
|
-
return json_logic_js_1.default.apply(logic, data);
|
|
196
|
-
};
|
|
193
|
+
var LpLogic = json_logic_js_1.default.apply;
|
|
197
194
|
exports.default = LpLogic;
|