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

set-utils

v1.0.4

Published

Utility methods for working with Sets

Downloads

24

Readme

set-utils

Utility methods for working with Sets

Installation

$ npm install --save set-utils

Methods

toArray ⇒ Array

Converts a Set to an Array

Returns: Array - The converted Set

| Param | Type | Description | | --- | --- | --- | | set | Set | The Sets that should be converted to an Array |

map(set, cb) ⇒ Set

The map() method creates a new Set with the results of calling a provided function on every element in this Set

Returns: Set - The Set after mapping operation has been perfomed

| Param | Type | Description | | --- | --- | --- | | set | Set | The set you want to perform the mapping operation on | | cb | function | https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/map |

filter(set, cb) ⇒ Set

The filter() method creates a new Set with all elements that pass the test implemented by the provided function

Returns: Set - The resulting Set after the filter operation

| Param | Type | Description | | --- | --- | --- | | set | Set | The Set you want to filter | | cb | function | Function to test each element of the Set. Return true to keep the element, false otherwise |

union(set1, ...setN) ⇒ Set

The union() method returns a new Set comprised of the Sets provided as arguments.

Returns: Set - The new concatinated Set

| Param | Type | Description | | --- | --- | --- | | set1, ...setN | Set | The Sets you want to concatinate |

intersect(set1, set2, ...setN) ⇒ Set

Creates a Set of unique values that are included in all given sets.

Returns: Set - The intersection of the Sets given as arguments

| Param | Type | Description | | --- | --- | --- | | set1...SetN | Set | Two or more Sets you want to intersect. |

diff(set1, set2, ...setN) ⇒ Set

Creates a Set of values not included in the other given sets.

Returns: Set - The new Set of filtered values

| Param | Type | Description | | --- | --- | --- | | set1 | Set | The Set to inspect | | set2...setN | Set | The values to exclude |

join(set, separator) ⇒ String

The join() method joins all elements of a Set into a string.

Returns: String - A string result of every element in the Set

| Param | Type | Description | | --- | --- | --- | | set | Set | The Set you want to join | | separator | String | Optional. Specifies string you want to separate the elements of the Set |

stringifyReplacer()

A replacer function for use with JSON.stringify. Converts Set to an Array in JSON.