X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FUtils.ts;h=c5a276bc92609e21bb55f79f2df4549a5f0fe447;hb=769d3b106c5e4744487bc633da4e4ee93f8f1bf4;hp=dd6591f88bd2b27fe999a2e9c748a5029eb41383;hpb=be4c670224282bebd69a75fec8fa45b7666634ff;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Utils.ts b/src/utils/Utils.ts index dd6591f8..c5a276bc 100644 --- a/src/utils/Utils.ts +++ b/src/utils/Utils.ts @@ -12,7 +12,7 @@ import { minutesToSeconds, secondsToMilliseconds, } from 'date-fns'; -import clone from 'just-clone'; +import deepClone from 'deep-clone'; import { Constants } from './Constants'; import { type TimestampedData, WebSocketCloseEventStatusString } from '../types'; @@ -60,8 +60,8 @@ export const formatDurationSeconds = (duration: number): string => { return formatDurationMilliSeconds(secondsToMilliseconds(duration)); }; -// More efficient date validation function than the one provided by date-fns -export const isValidDate = (date: unknown): boolean => { +// More efficient time validation function than the one provided by date-fns +export const isValidTime = (date: unknown): boolean => { if (typeof date === 'number') { return !isNaN(date); } else if (isDate(date)) { @@ -76,8 +76,8 @@ export const convertToDate = ( if (isNullOrUndefined(value)) { return value as null | undefined; } - if (value instanceof Date) { - return value; + if (isDate(value)) { + return value as Date; } if (isString(value) || typeof value === 'number') { return new Date(value!); @@ -206,8 +206,19 @@ export const isObject = (item: unknown): boolean => { ); }; -export const cloneObject = (object: T): T => { - return clone(object); +type CloneableData = + | number + | string + | boolean + | null + | undefined + | Date + | CloneableData[] + | { [key: string]: CloneableData }; + +export const cloneObject = (object: T): T => { + // eslint-disable-next-line @typescript-eslint/no-unsafe-call + return deepClone(object as CloneableData) as T; }; export const hasOwnProp = (object: unknown, property: PropertyKey): boolean => {