@cjser/unique-random-array
v4.0.0-cjser.2
Published
Get consecutively unique elements from an array
Downloads
74
Maintainers
Readme
unique-random-array
Get consecutively unique elements from an array
Useful for things like slideshows where you don't want to have the same slide twice in a row.
Install
npm install unique-random-arrayUsage
import uniqueRandomArray from 'unique-random-array';
const random = uniqueRandomArray([1, 2, 3, 4]);
console.log(random(), random(), random(), random());
//=> 4 2 1 4API
uniqueRandomArray(array)
Returns a function, that when called, will return a random element that's never the same as the previous, or undefined if the array is empty.
array
Type: unknown[]
Related
- unique-random - Generate random numbers that are consecutively unique
- random-int - Generate a random integer
- random-float - Generate a random float
- random-item - Get a random item from an array
- random-obj-key - Get a random key from an object
- random-obj-prop - Get a random property from an object
- crypto-random-string - Generate a cryptographically strong random string
cjser
This package is a CommonJS-compatible build generated by cjser for projects that still need require() support. The source version matches the original npm package version, with a cjser prerelease suffix for this generated build.
Original repository: https://github.com/sindresorhus/unique-random-array
