Commit | Line | Data |
---|---|---|
bbeadd16 JB |
1 | import type { WorkerChoiceStrategyOptions } from './pools/selection-strategies/selection-strategies-types' |
2 | ||
6e9d10db JB |
3 | /** |
4 | * An intentional empty function. | |
5 | */ | |
4f3c3d89 | 6 | export const EMPTY_FUNCTION: () => void = Object.freeze(() => { |
6e9d10db | 7 | /* Intentionally empty */ |
4f3c3d89 | 8 | }) |
78099a15 JB |
9 | |
10 | /** | |
bbeadd16 JB |
11 | * Default worker choice strategy options. |
12 | */ | |
13 | export const DEFAULT_WORKER_CHOICE_STRATEGY_OPTIONS: WorkerChoiceStrategyOptions = | |
14 | { | |
15 | medRunTime: false | |
16 | } | |
17 | ||
18 | /** | |
19 | * Compute the median of the given data set. | |
78099a15 JB |
20 | * |
21 | * @param dataSet - Data set. | |
22 | * @returns The median of the given data set. | |
23 | */ | |
24 | export const median = (dataSet: number[]): number => { | |
4a45e8d2 JB |
25 | if (Array.isArray(dataSet) && dataSet.length === 0) { |
26 | return 0 | |
27 | } | |
78099a15 JB |
28 | if (Array.isArray(dataSet) && dataSet.length === 1) { |
29 | return dataSet[0] | |
30 | } | |
c6f42dd6 JB |
31 | const sortedDataSet = dataSet.slice().sort((a, b) => a - b) |
32 | return ( | |
33 | (sortedDataSet[(sortedDataSet.length - 1) >> 1] + | |
34 | sortedDataSet[sortedDataSet.length >> 1]) / | |
35 | 2 | |
36 | ) | |
78099a15 | 37 | } |
0d80593b | 38 | |
3c653a03 JB |
39 | /** |
40 | * Is the given object a plain object? | |
41 | * | |
42 | * @param obj - The object to check. | |
43 | * @returns `true` if the given object is a plain object, `false` otherwise. | |
44 | */ | |
0d80593b JB |
45 | export const isPlainObject = (obj: unknown): boolean => |
46 | typeof obj === 'object' && | |
47 | obj !== null && | |
48 | obj?.constructor === Object && | |
49 | Object.prototype.toString.call(obj) === '[object Object]' |