UNPKG

snappy-utils

Version:

A lightweight and efficient JavaScript utility library packed with commonly used helper functions like capitalize, debounce, deepClone, flattenArray, isPrime, and more. Ideal for developers who want a simple yet powerful toolkit to streamline everyday cod

5 lines (4 loc) 137 B
function randomInRange(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; } module.exports = randomInRange;