quick-int

1.0.4 • Public • Published

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();

Readme

Keywords

Package Sidebar

Install

npm i quick-int

Weekly Downloads

0

Version

1.0.4

License

MIT

Unpacked Size

2.15 kB

Total Files

4

Last publish

Collaborators

  • jonnycolby