Skip to main content
Module

x/rambda/source/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}