mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-07 00:03:07 +00:00
31 lines
613 B
TypeScript
31 lines
613 B
TypeScript
/**
|
|
* Return pseudo random subset of the input.
|
|
*/
|
|
export function getPseudoRandomSubset<T>(
|
|
values: T[],
|
|
wantedNumber: number
|
|
): T[] {
|
|
if (values.length <= wantedNumber || values.length <= 1) {
|
|
return values;
|
|
}
|
|
|
|
return shuffle(values).slice(0, wantedNumber);
|
|
}
|
|
|
|
function shuffle<T>(arr: T[]): T[] {
|
|
if (arr.length <= 1) {
|
|
return arr;
|
|
}
|
|
const randInt = (): number => {
|
|
return Math.floor(Math.random() * Math.floor(arr.length));
|
|
};
|
|
|
|
for (let i = 0; i < arr.length; i++) {
|
|
const j = randInt();
|
|
const tmp = arr[i];
|
|
arr[i] = arr[j];
|
|
arr[j] = tmp;
|
|
}
|
|
return arr;
|
|
}
|