Skip to content

Instantly share code, notes, and snippets.

@Balastrong
Created August 17, 2022 08:44
Show Gist options
  • Save Balastrong/14d684e75a560200cc5922ce66e82bcf to your computer and use it in GitHub Desktop.
Save Balastrong/14d684e75a560200cc5922ce66e82bcf to your computer and use it in GitHub Desktop.
wrand - standalone
export const pick = <T>(items: WeightedItem<T>[]) =>
new RandomPicker(items).pick();
export const pickMany = <T>(items: WeightedItem<T>[], amount: number) =>
new RandomPicker(items).pickMany(amount);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment