oolib 2.238.1 → 2.238.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.
@@ -32,7 +32,7 @@ var set_deleteVal = function (action, data, valuePath, value) {
32
32
  * - how do we decide?
33
33
  * - by checking if the next key is a number or not
34
34
  */
35
- if (nextKey && !isNaN(parseInt(nextKey))) { //next key IS a number then..
35
+ if (nextKey && String(Number(nextKey)) === nextKey) { //next key IS a pure number then..
36
36
  dataRef[key] = [];
37
37
  }
38
38
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oolib",
3
- "version": "2.238.1",
3
+ "version": "2.238.2",
4
4
  "description": " OKE Component Library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",