Name Last Update
..
index.js Loading commit data...
package.json Loading commit data...
readme.md Loading commit data...

unique-random Build Status

Generate random numbers that are consecutively unique.

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

Install

$ npm install --save unique-random

Usage

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

API

uniqueRandom(min, max)

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

License

MIT © Sindre Sorhus