UNPKG

conductor

Version:

A modern & functional JavaScript utility library

4 lines (2 loc) 104 B
const random = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min module.exports = random