// min ..< max (exclusive) export function randomFloat(min, max){ return Math.random() * (max - min) + min; }
Last updated 3 years ago