Skip to content

jonnycolby/quick-int

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

quick-int

Simply generate a random integer with this utility method.

The generator is inclusive on both ends, so quick_int(0, 10) could produce 0, 10, or any whole number in between.

NPM

NPM Repository

CDN

You can use the CDN version of this plugin for fast and easy setup.

<script src="https://unpkg.com/quick-int@latest/index.js"></script>

Installation

You can install quick-int with just one command and you're good to go

# with npm
npm i quick-int

# with yarn
yarn add quick-int

Examples

import quick_int from "quick-int";

const my_int_01 = quick_int({ min: 0, max: 100 });
const my_int_02 = quick_int(0, 100);
const my_int_03 = quick_int();

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published