greybel-interpreter 4.0.13 → 4.0.14
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/vm/evaluation.js +1 -1
- package/package.json +1 -1
package/dist/vm/evaluation.js
CHANGED
|
@@ -305,7 +305,7 @@ function evalNotEqual(a, b) {
|
|
|
305
305
|
else if (a instanceof nil_1.CustomNil) {
|
|
306
306
|
return new boolean_1.CustomBoolean(!(b instanceof nil_1.CustomNil));
|
|
307
307
|
}
|
|
308
|
-
return default_1.DefaultType.
|
|
308
|
+
return default_1.DefaultType.True;
|
|
309
309
|
}
|
|
310
310
|
exports.evalNotEqual = evalNotEqual;
|
|
311
311
|
function evalMod(a, b) {
|