@instantdb/core
Advanced tools
Comparing version 0.10.25 to 0.10.26
@@ -27,2 +27,5 @@ export function areObjectKeysEqual(a, b) { | ||
const r = {}; | ||
for (const key of Object.keys(target)) { | ||
r[key] = target[key]; | ||
} | ||
for (const key of Object.keys(source)) { | ||
@@ -29,0 +32,0 @@ const isMergeable = typeof target[key] === "object" && typeof source[key] === "object"; |
@@ -33,2 +33,5 @@ "use strict"; | ||
const r = {}; | ||
for (const key of Object.keys(target)) { | ||
r[key] = target[key]; | ||
} | ||
for (const key of Object.keys(source)) { | ||
@@ -35,0 +38,0 @@ const isMergeable = typeof target[key] === "object" && typeof source[key] === "object"; |
{ | ||
"name": "@instantdb/core", | ||
"version": "0.10.25", | ||
"version": "0.10.26", | ||
"description": "Instant's core local abstraction", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -44,2 +44,6 @@ export function areObjectKeysEqual(a, b) { | ||
for (const key of Object.keys(target)) { | ||
r[key] = target[key]; | ||
} | ||
for (const key of Object.keys(source)) { | ||
@@ -46,0 +50,0 @@ const isMergeable = |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2834134
40284