UNPKG

random-js

Version:

A mathematically correct random number generator library for JavaScript.

6 lines (5 loc) 172 B
import { Engine } from "../types"; /** * Returns a floating-point value within [0.0, 1.0) */ export declare function realZeroToOneExclusive(engine: Engine): number;