# pull-unique-combine

> Like pull-stream's unique through stream but requires a result to be present in all streams

Latest version **0.1.0** (published 2014-04-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install pull-unique-combine
pnpm add pull-unique-combine
yarn add pull-unique-combine
bun add pull-unique-combine
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2014-04-18 |
| First published | 2014-04-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Kai Davenport |
| Maintainers | binocarlos |
| Keywords | stream, pull-stream, combine, unique |

## Links

- npm: https://www.npmjs.com/package/pull-unique-combine
- Repository: https://github.com/binocarlos/pull-unique-combine
- Issues: https://github.com/binocarlos/pull-unique-combine/issues
- npm.io page: https://npm.io/package/pull-unique-combine

## Dependencies (1)

- [pull-stream](https://npm.io/package/pull-stream.md) ^2.22.0

## Alternatives

- [byte-size](https://npm.io/package/byte-size.md) — 2.1M weekly downloads
- [speed-limiter](https://npm.io/package/speed-limiter.md) — 16.0K weekly downloads
- [@powersync/node](https://npm.io/package/@powersync/node.md) — 10.9K weekly downloads
- [@ledgerhq/coin-cardano](https://npm.io/package/@ledgerhq/coin-cardano.md) — 1.0K weekly downloads
- [@jayesol/jayeson.lib.streamfinder](https://npm.io/package/@jayesol/jayeson.lib.streamfinder.md) — 1.0K weekly downloads

## Recent versions

- 0.1.0 (latest) — 2014-04-18
- 0.0.2 — 2014-04-18
- 0.0.1 — 2014-04-18

## README

pull-unique-combine
===================

![Build status](https://api.travis-ci.org/binocarlos/pull-unique-combine.png)

Like pull-stream's unique through stream but requires a result to be present in all streams

## example

```js
var pull  = require('pull-stream')
var cat  = require('pull-cat')
var uniquecombine = require('pull-unique-combine')

pull(
  cat([
		pull.values([2,3,4]),
		pull.values([3,4,5])
	]),
  uniquecombine(2),
  pull.collect(function (err, array) {
    console.log(array)

    // [3,4]
  })
)

```

## license

---
_Source: https://npm.io/package/pull-unique-combine · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
