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
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]
})
)