1.0.0 • Published 8 years ago

unique-random-at-depth v1.0.0

Weekly downloads
88
License
MIT
Repository
github
Last release
8 years ago

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