UNPKG

react-tesna-utils

Version:

A versatile utility library featuring optimized functions for data manipulation, clipboard handling, text truncation, comparison, validation, and more. Designed for modern JavaScript and TypeScript projects with efficient and reusable solutions.

6 lines (5 loc) 259 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.generateRandomNumber = void 0; const generateRandomNumber = (min, max) => Math.floor(Math.random() * (max - min)) + min; exports.generateRandomNumber = generateRandomNumber;