Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

Latest commit

 

History

History
65 lines (51 loc) · 1.47 KB

README.md

File metadata and controls

65 lines (51 loc) · 1.47 KB

weighted-random

Choose a random value from a fixed list of choices. Treat some values as more likely than others.

Released under the MIT license. Current Github Action build status. Follow @pqtdev

Installation

npm install @pqt/weighted-random
# OR
yarn add @pqt/weighted-random

Usage

TypeScript

import { weightedRandom, Items } from "@pqt/weighted-random";

const items: Items = [
  ["Audi", 3],
  ["BMW", 1],
  ["Ferrari", 7],
  ["Lamborghini", 7],
  ["RAM", 4],
  ["Tesla", 6]
];

weightedRandom(items); // => "Lamborghini" (OR any of the other options with a variability based on weight)

JavaScript

import { weightedRandom } from "@pqt/weighted-random";

weightedRandom([
  ["Audi", 3],
  ["BMW", 1],
  ["Ferrari", 7],
  ["Lamborghini", 7],
  ["RAM", 4],
  ["Tesla", 6]
]); // => "Lamborghini" (OR any of the other options with a variability based on weight)

License

MIT