random-parse

1.0.3 • Public • Published

random-float Build Status

Generate a random float

Install

$ npm install --save random-parse

Usage

var getRandom = require('random-parse');
var random = new getRandom();
 
var randomFloat = random.randomFloat;
 
randomFloat(5);
//=> 4.401887938147411
 
randomFloat(10, 100);
//=> 72.34217455144972

API

randomFloat(max)

Returns an float from 0 to max.

randomFloat(min, max)

Returns an float from min to max.

min

Type: number
Default: 0

Minimum float to return.

max

Type: number
Default: 1

Maximum float to return.

Related

random-int Build Status

Generate a random integer

Usage

var randomInt = random.randomInt;
randomInt(5);
//=> 3
 
randomInt(10, 100);
//=> 54

API

randomInt(max)

Returns an integer from 0 to max.

randomInt(min, max)

Returns an integer from min to max.

min

Type: number
Default: 0

Minimum integer to return.

max

Type: number
Default: 1

Maximum integer to return.

Related

License

MIT © Sindre Sorhus

/random-parse/

    Package Sidebar

    Install

    npm i random-parse

    Weekly Downloads

    1

    Version

    1.0.3

    License

    ISC

    Unpacked Size

    4.08 kB

    Total Files

    4

    Last publish

    Collaborators

    • tager.wang