X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils.ts;h=baaf1c1ca62499106a4ce0ea41148204dda75d2b;hb=802983837716dc38305c13f905a1977688365293;hp=176d2c4f875fb2b3fc695ad419a8398d12467bb5;hpb=7684583561a1bd274b3f3d7d869735256aa77afa;p=poolifier.git diff --git a/src/utils.ts b/src/utils.ts index 176d2c4f..baaf1c1c 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -12,7 +12,8 @@ export const EMPTY_FUNCTION: () => void = Object.freeze(() => { */ export const DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS: WorkerChoiceStrategyOptions = { - medRunTime: false + medRunTime: false, + medWaitTime: false } /** @@ -36,6 +37,12 @@ export const median = (dataSet: number[]): number => { ) } +/** + * Is the given object a plain object? + * + * @param obj - The object to check. + * @returns `true` if the given object is a plain object, `false` otherwise. + */ export const isPlainObject = (obj: unknown): boolean => typeof obj === 'object' && obj !== null &&