From 20f1c5ef2721631a6bdaa45746ec6db2dfa6e975 Mon Sep 17 00:00:00 2001 From: ianwoodard <17186604+IanWoodard@users.noreply.github.com> Date: Thu, 31 Aug 2023 22:14:06 -0700 Subject: [PATCH] Removing unused util --- earn/src/util/Maps.ts | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 earn/src/util/Maps.ts diff --git a/earn/src/util/Maps.ts b/earn/src/util/Maps.ts deleted file mode 100644 index 67a09c02..00000000 --- a/earn/src/util/Maps.ts +++ /dev/null @@ -1,5 +0,0 @@ -export function deepCopyMap(map: Map): Map { - const newMap = new Map(); - map.forEach((v, k) => newMap.set(k, v)); - return newMap; -}