summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/src/util/deepEquals.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-02-08 15:23:44 +0100
committerFlorian Dold <florian@dold.me>2021-02-08 15:23:44 +0100
commit4452984a24334e3b7afb60e3db9dc12db02d65ba (patch)
tree50baf32f3a624d77346e38ba2bc573c063651ad2 /packages/idb-bridge/src/util/deepEquals.ts
parent883637d3f287e5026de5bcafb559ff3e6ba1f3bb (diff)
downloadwallet-core-4452984a24334e3b7afb60e3db9dc12db02d65ba.tar.gz
wallet-core-4452984a24334e3b7afb60e3db9dc12db02d65ba.tar.bz2
wallet-core-4452984a24334e3b7afb60e3db9dc12db02d65ba.zip
idb-bridge: remove cyclic dependencies, rip out api extractor
Diffstat (limited to 'packages/idb-bridge/src/util/deepEquals.ts')
-rw-r--r--packages/idb-bridge/src/util/deepEquals.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/idb-bridge/src/util/deepEquals.ts b/packages/idb-bridge/src/util/deepEquals.ts
index 716786aba..bb7c0269c 100644
--- a/packages/idb-bridge/src/util/deepEquals.ts
+++ b/packages/idb-bridge/src/util/deepEquals.ts
@@ -24,7 +24,7 @@ const isArray = Array.isArray;
const keyList = Object.keys;
const hasProp = Object.prototype.hasOwnProperty;
-function deepEquals(a: any, b: any): boolean {
+export function deepEquals(a: any, b: any): boolean {
if (a === b) return true;
if (a && b && typeof a == "object" && typeof b == "object") {