Package Exports
- pull-through-up
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-through-up) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
pull-through-up
Like
pull.through, this is a pass through stream that doesn't change the value, but allows you to inspect the "pull" request, not the "pull" response.
npm install --save pull-through-upUsage
const pull = require('pull-stream')
const throughUp = require('pull-through-up')
pull(
pull.values(['a','b']),
throughUp(
() => console.log('request is being made'), // operation
() => console.log('end request')), // on end
pull.drain(x => console.log(x)
)