UNPKG

@thi.ng/random

Version:

Pseudo-random number generators w/ unified API, distributions, weighted choices, ID generation

6 lines (5 loc) 141 B
import { SYSTEM } from "../system.js"; const uniform = (rnd = SYSTEM, min = 0, max = 1) => () => rnd.minmax(min, max); export { uniform };