1 import type { WorkerChoiceStrategyOptions
} from
'./pools/selection-strategies/selection-strategies-types'
4 * An intentional empty function.
6 export const EMPTY_FUNCTION
: () => void = Object.freeze(() => {
7 /* Intentionally empty */
11 * Default worker choice strategy options.
13 export const DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS
: WorkerChoiceStrategyOptions
=
19 * Compute the median of the given data set.
21 * @param dataSet - Data set.
22 * @returns The median of the given data set.
24 export const median
= (dataSet
: number[]): number => {
25 if (Array.isArray(dataSet
) && dataSet
.length
=== 0) {
28 if (Array.isArray(dataSet
) && dataSet
.length
=== 1) {
31 const sortedDataSet
= dataSet
.slice().sort((a
, b
) => a
- b
)
33 (sortedDataSet
[(sortedDataSet
.length
- 1) >> 1] +
34 sortedDataSet
[sortedDataSet
.length
>> 1]) /
40 * Is the given object a plain object?
42 * @param obj - The object to check.
43 * @returns `true` if the given object is a plain object, `false` otherwise.
45 export const isPlainObject
= (obj
: unknown
): boolean =>
46 typeof obj
=== 'object' &&
48 obj
?.constructor
=== Object &&
49 Object.prototype
.toString
.call(obj
) === '[object Object]'