1.0.0 • Published 4 years ago

@pqt/weighted-random v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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