Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binocarlos/pull-unique-combine
Like pull-stream's unique through stream but requires a result to be present in all streams
https://github.com/binocarlos/pull-unique-combine
Last synced: 11 days ago
JSON representation
Like pull-stream's unique through stream but requires a result to be present in all streams
- Host: GitHub
- URL: https://github.com/binocarlos/pull-unique-combine
- Owner: binocarlos
- License: mit
- Created: 2014-04-18T00:40:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-18T01:23:23.000Z (over 10 years ago)
- Last Synced: 2024-10-04T17:36:45.934Z (about 2 months ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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