JSPM

unique-random-at-depth

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 36
  • Score
    100M100P100Q64602F
  • License MIT

Generate random numbers that are consecutively unique at a provided depth

Package Exports

  • unique-random-at-depth

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (unique-random-at-depth) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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.

License

MIT © Sindre Sorhus