X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FCircularArray.ts;h=5fdeeaad1f7e57c2dae60d0c6fe976d623c942bd;hb=551e477c2cc2461de8dcc2b263a35c0c50240bbf;hp=d4e965e7adf22bdc5c571b3701db9541a7631c23;hpb=edd134392e237a3242dc2093341df70244c51472;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/CircularArray.ts b/src/utils/CircularArray.ts index d4e965e7..5fdeeaad 100644 --- a/src/utils/CircularArray.ts +++ b/src/utils/CircularArray.ts @@ -47,7 +47,7 @@ export class CircularArray extends Array { public splice(start: number, deleteCount?: number, ...items: T[]): T[] { let itemsRemoved: T[]; - if (arguments.length >= 3 && typeof deleteCount !== 'undefined') { + if (arguments.length >= 3 && deleteCount !== undefined) { itemsRemoved = super.splice(start, deleteCount); // FIXME: that makes the items insert not in place this.push(...items);