unique-random-at-depth

1.0.0 • Public • Published

unique-random Build Status

Generate random numbers that are consecutively unique

Useful for things like slideshows where you don't want to have the same slide twice in a row.

Install

$ npm install --save unique-random

Usage

var uniqueRandom = require('unique-random');
var rand = uniqueRandom(1, 10);
 
console.log(rand(), rand(), rand());
//=> 5 2 6

API

uniqueRandom(min, max)

Returns a function that when called will return a random number that's never the same as the previous.

Related

License

MIT © Sindre Sorhus

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i unique-random-at-depth

    Weekly Downloads

    42

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • aweary