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

@evologi/join

v0.2.0

Published

Join strategies for Iterables, Maps, and Arrays.

Downloads

165

Readme

@evologi/join

JavaScript Style Guide Libraries.io dependency status for latest release

Join strategies for Iterables, Maps, and Arrays.

Features

  • Zero dependencies: small footprint
  • Pure ES6: Node.js and browser support
  • TypeScript support

Example

import {
  fromIterable,
  getDiscardedValues,
  innerJoin
} from '@evologi/join'

const left = fromIterable(
  [
    { id: 'a', value: 1 },
    { id: 'b', value: 2 },
    { id: 'c', value: 4 }
  ],
  item => item.id
)

const right = fromIterable(
  [
    { key: 'c', value: 8 },
    { key: 'a', value: 17 },
    { key: 'd', value: 42 }
  ],
  item => item.key
)

function resolve (leftItem, rightItem, key) {
  return { _id: key, value: leftItem.value + rightItem.value }
}

const joined = innerJoin(left, right, resolve)
const discarded = getDiscardedValues(joined)

// [ { _id: 'a', value: 18 }, { _id: 'c', value: 12 } ]
console.log(Array.from(joined))

// [ { id: 'b', value: 2 }, { key: 'd', value: 42 } ]
console.log(Array.from(discarded))

API

fromIterable(iterable, getKey[, mode])

Creates a Map instance from an iterable object. The getKey(value, index) function is used to generate each item's key.

  • iterable <Iterable> The iterable object to cast.
  • getKey <Function> A function that accepts the current iterated value and its index and returns the key that represents the item.
  • mode <String> Used to configure key's collision behaviour. By default a duplicated key will throw an error. Use "override" to override collisions with the last found value. Use "ignore" to ignore collisions and keep the first value.
  • Returns: <Map>
const array = [
  { name: 'harry', surname: 'potter' },
  { name: 'ron', surname: 'weasley' },
  { name: 'hermione', surname: 'granger' }
]

// {
//   harry: { name: 'harry', surname: 'potter' },
//   ron: { name: 'ron', surname: 'weasley' }
// }
const map = fromIterable(array, item => item.name[0], 'ignore')

join(leftMap, rightMap, selectOrType, resolve)

Configurable join function.

  • leftMap <Map>
  • rightMap <Map>
  • selectOrType <String> | <Function> Can be "left", "right", "inner", "outer", "leftOuter", "rightOuter", "full", or a function that accepts three agruments.
    • leftValue <*> The key's value from the left Map object. Can be undefined.
    • rightValue <*> The key's value from the right Map object. Can be undefined.
    • key <*> The currently iterated key.
    • Returns: <Boolean> Returns true to include this key inside the reusulting iterable.
  • resolve <Function> A function that accepts Maps values and key and returns the resulting value that will be included inside the iterable.
    • leftValue <*> The key's value from the left Map object. Can be undefined.
    • rightValue <*> The key's value from the right Map object. Can be undefined.
    • key <*> The currently iterated key.
    • Returns: <*>
  • Returns: <Iterable>
import { fromIterable, join } from '@evologi/join'

const iterable = join(
  fromIterable(
    [
      { id: 42, message: 'hello' },
      { id: 80, message: 'oh' }
    ],
    item => item.id
  ),
  fromIterable(
    [
      { id: 80, message: 'no' },
      { id: 42, message: 'world' }
    ],
    item => item.id
  ),
  (leftValue, rightValue, key) => key < 50, // custom selection
  (leftValue, rightValue, key) => ({
    id: key,
    message: `${leftValue.message} ${rightValue.message}`
  })
)

// [ { id: 42, message: 'hello world' } ]
console.log(Array.from(iterable))

innerJoin(leftMap, rightMap, resolve)

Selects values that have matching values in both Maps.

  • leftMap <Map>
  • rightMap <Map>
  • resolve <Function> See join function.
  • Returns: <Iterable>

outerJoin(leftMap, rightMap, resolve)

Selects values that are present in one Map, but not both.

  • leftMap <Map>
  • rightMap <Map>
  • resolve <Function> See join function.
  • Returns: <Iterable>

fullJoin(leftMap, rightMap, resolve)

Selects all values from both Map objects.

  • leftMap <Map>
  • rightMap <Map>
  • resolve <Function> See join function.
  • Returns: <Iterable>

leftJoin(leftMap, rightMap, resolve)

Selects values that are present in the left Map object.

  • leftMap <Map>
  • rightMap <Map>
  • resolve <Function> See join function.
  • Returns: <Iterable>

rightJoin(leftMap, rightMap, resolve)

Selects values that are present in the right Map object.

  • leftMap <Map>
  • rightMap <Map>
  • resolve <Function> See join function.
  • Returns: <Iterable>

leftOuterJoin(leftMap, rightMap, resolve)

Selects values that are present only in the left Map object.

  • leftMap <Map>
  • rightMap <Map>
  • resolve <Function> See join function.
  • Returns: <Iterable>

rightOuterJoin(leftMap, rightMap, resolve)

Selects values that are present only in the right Map object.

  • leftMap <Map>
  • rightMap <Map>
  • resolve <Function> See join function.
  • Returns: <Iterable>

not(selectOrType)

Returns the opposite join type string or a negated select function.

  • selectOrType <String> | <Function>
  • Returns: <String> | <Function>

getDiscardedValues(iterable)

Returns an iterable that yields all discarded values from the passed joined iterable.

  • iterable <Iterable>
  • Returns: <Iterable>