@arnabroydevx/rand-util-poc
v0.2.0
Published
Just a POC package for testing
Readme
Random Util POC
This is a POC typescript library doing some work with random numbers
NOTE: This is a sample project for POC. Do not use this in your app!!
Setup
Installation
npm install @arnabroydevx/rand-util-poc yarn add @arnabroydevx/rand-util-pocUsage
import { getRandomInRange } from '@arnabroydevx/rand-util-poc';
// And then somewhere in your code
// This will return a random number between 10 and 100 with both inclusive
const randomValue = getRandomInRange(10, 100);