kasunkv / unique-random

Generate random numbers that are consecutively unique

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Generate random numbers that are consecutively unique

License:MIT License


Languages

Language:JavaScript 100.0%