Skip to content

Generate random numbers that are consecutively unique

License

Notifications You must be signed in to change notification settings

Richienb/unique-random

 
 

Repository files navigation

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

Usage

const uniqueRandom = require('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

License

MIT © Sindre Sorhus

About

Generate random numbers that are consecutively unique

Resources

License

Code of conduct

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Languages

  • JavaScript 80.4%
  • TypeScript 19.6%