UNPKG
@dexpenses/rule-conditions
Version:
latest (1.2.5)
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.5
1.0.4
1.0.3
Condition engine and parser for Dexpenses rules
dexmo007/dexpenses-rule-conditions
@dexpenses/rule-conditions
/
lib
/
condition
/
bool
/
NotCondition.js
12 lines
•
315 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
NotCondition
{
constructor
(
condition
) {
this
.
condition
= condition; }
test
(
receipt
) {
return
!
this
.
condition
.
test
(receipt); } }
exports
.
default
=
NotCondition
;
//# sourceMappingURL=NotCondition.js.map