From 4452984a24334e3b7afb60e3db9dc12db02d65ba Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 8 Feb 2021 15:23:44 +0100 Subject: idb-bridge: remove cyclic dependencies, rip out api extractor --- packages/idb-bridge/src/util/deepEquals.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/idb-bridge/src/util/deepEquals.ts') 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") { -- cgit v1.2.3