UNPKG

ant-utils

Version:
13 lines 323 B
/** * Random with Decimal * * @export * @param {Decimal} [min=new Decimal(0)] * @param {Decimal} [max=new Decimal(1)] * @returns * @requires Decimal */ export function random(min = new Decimal(0), max = new Decimal(1)) { return min.plus(max.minus(min).times(Math.random())); } //# sourceMappingURL=random.js.map