Popularity
2.2
Stable
Activity
3.8
-
116
8
17

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: Number     Generate     Single     Random     Rand     Non-repeating     Unique    
Latest version: v2.1.0

unique-random alternatives and similar modules

Based on the "Number" category.
Alternatively, view unique-random alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of unique-random or a related project?

Add another 'Number' Module

README

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