0.2.0 • Published 3 years ago
@arnabroydevx/rand-util-poc v0.2.0
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-poc
Usage
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);