unique-random-at-depth

Generate random numbers that are consecutively unique at a provided depth

Usage no npm install needed!

<script type="module">
  import uniqueRandomAtDepth from 'https://cdn.skypack.dev/unique-random-at-depth';
</script>

README

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