unique-random
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

unique-random

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 unique-random

Usage

import uniqueRandom from 'unique-random';

const random = uniqueRandom(1, 10);

console.log(random(), random(), random());
//=> 5 2 6

API

uniqueRandom(minimum, maximum)

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

Related

Package Sidebar

Install

npm i unique-random

Weekly Downloads

66,421

Version

3.0.0

License

MIT

Unpacked Size

3.97 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus