refactor: cleanup
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 14 Jul 2023 19:48:59 +0000 (21:48 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 14 Jul 2023 19:48:59 +0000 (21:48 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/utils/Utils.ts

index 3ef99c5f2fdcab960c8e8234371eba0830d59c51..eba8ca447082243a9c343e0ee50ed09d9274f0a0 100644 (file)
@@ -297,7 +297,7 @@ export const JSONStringifyWithMapSupport = (
 ): string => {
   return JSON.stringify(
     obj,
-    (key, value: Record<string, unknown>) => {
+    (_, value: Record<string, unknown>) => {
       if (value instanceof Map) {
         return {
           dataType: 'Map',