JSPM

pull-unique-combine

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q15720F
  • License MIT

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

Package Exports

  • pull-unique-combine

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pull-unique-combine) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

pull-unique-combine

Build status

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

example

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