npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

no-duplicates

v2.0.1

Published

Get random elements from an array without duplicates until all elements in the array have been used.

Downloads

26

Readme

no-duplicates

Get random numbers or random elements from an array without duplicates in JavaScript. Will return a function that will return a random number or random array element without repeating until all elements in the array or all numbers in the range have been used. A very useful function for game development and any other application that may require randomized sets.

Installation

npm install no-duplicates
const randumb = require('no-duplicates');

const randomizedSafari = randumb(['🐘', '🦁', '🦓', '🦒']);
randmoizedSafari();
/* ********************************************
 * will return a random animal without        *
 * repeating until all animals have been used.*
 ********************************************* */

const nums = randumb(10);
nums();
/* **********************************************
 * will return a random number between          *
 * 0 and 10 (including 10) without repeating    *
 * until all numbers in the range have been used*
 ********************************************** */

const between = randumb(5, 15);
between();
/* *********************************************
 * will return a random number between 5 and 15*
 * (including 5  & 15) without repeating until *
 * all numbers in the range have been used     *
 ********************************************* */

const returnArray = randumb(2, 10);
returnArray(true);
//[
//  10, 2, 7, 5, 6,
//   3, 8, 4, 9
//]

/* *********************************************
 * Passing a truthy value as an argument will  *
 * return all items or numbers in a randomized *
 * array without repeats.                      *
 ********************************************* */

Examples

const randumb = require('no-duplicates');

const fruit = ['🍎', '🍊', '🍉', '🍓', '🍇'];

const randomFruit = randumb(fruit);
for (let i = 0; i < 10; i++) {
  console.log(randomFruit());
}
/* Example output...
🍊
🍓
🍇
🍉
🍎
🍉
🍊
🍎
🍇
🍓
*/
const randumb = require('no-duplicates');

const nums = randumb(1, 10);
for (let i = 0; i < 10; i++) {
  for (let j = 0; j < 11; j++) {
    j < 10 ? console.log(nums()) : console.log('❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎');
  }
}

example output...

4
5
10
2
3
1
8
6
9
7
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎
2
6
3
8
5
10
7
4
9
1
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎
1
3
8
5
2
6
9
4
7
10
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎
5
9
2
6
8
7
10
3
1
4
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎
5
8
1
2
3
10
4
7
9
6
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎
3
8
4
2
9
7
5
1
6
10
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎
10
7
4
5
9
1
8
2
6
3
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎
7
2
9
6
5
1
8
4
3
10
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎
9
10
2
3
5
4
8
7
1
6
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎
9
6
3
7
1
4
2
5
8
10
❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎❤︎