@abaplint/runtime 2.3.1 → 2.3.2

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.
@@ -117,6 +117,9 @@ function eq(left, right) {
117
117
  if (r === "") {
118
118
  r = 0;
119
119
  }
120
+ else if (r.includes(".")) {
121
+ r = parseFloat(r);
122
+ }
120
123
  else {
121
124
  r = parseInt(r, 10);
122
125
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",