From: Jérôme Benoit Date: Fri, 14 Jul 2023 19:48:59 +0000 (+0200) Subject: refactor: cleanup X-Git-Tag: v1.2.18~31 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=58ddf341890de6554fc6c5325f82a33f3e4b3632;p=e-mobility-charging-stations-simulator.git refactor: cleanup Signed-off-by: Jérôme Benoit --- diff --git a/src/utils/Utils.ts b/src/utils/Utils.ts index 3ef99c5f..eba8ca44 100644 --- a/src/utils/Utils.ts +++ b/src/utils/Utils.ts @@ -297,7 +297,7 @@ export const JSONStringifyWithMapSupport = ( ): string => { return JSON.stringify( obj, - (key, value: Record) => { + (_, value: Record) => { if (value instanceof Map) { return { dataType: 'Map',