Skip to main content
Module

x/rambda/random.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function random(min, max){ return Math.floor(Math.random() * (max - min + 1)) + min}