UNPKG

random

Version:

Seedable random number generator supporting many common distributions.

7 lines 195 B
export default (random, mu = 0, sigma = 1) => { const normal = random.normal(mu, sigma); return () => { return Math.exp(normal()); }; }; //# sourceMappingURL=log-normal.js.map