1.0.2 • Published 3 years ago

simple-random-generator v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Simple-Random

A Simple Random Number generator.

Functions

chooseMinMax

// Pick the minimum and the maximum (Exclutionary).
const number = SimpleRandom.chooseMinMax(0, 5);

chooseMinMaxInt

// Same as above, but with an integer.
const number = SimpleRandom.chooseMinMaxInt(0, 5);

chooseFromArray

// Gets a random element from the array.
const element = SimpleRandom.chooseFromArray([1, 2, 3]);

weightedChance

// Get a true, or false with a weighted chance.
// Use an int from 0 to 100.
// This function will throw an error if not given a number between 0 and 100.
const trueOrFalse = SimpleRandom.weightedChance(25);