Package Exports
- @ljharb/resumer
- @ljharb/resumer/index.js
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 (@ljharb/resumer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@ljharb/resumer 
Note: This package is a fork of https://npmjs.com/resumer, and builds off of it.
Return a through stream that starts out paused and resumes on the next tick, unless somebody called .pause().
This module has the same signature as through.
example
var resumer = require('resumer');
var s = createStream();
s.pipe(process.stdout);
function createStream () {
var stream = resumer();
stream.queue('beep boop\n');
return stream;
}$ node example/resume.js
beep boopmethods
var resumer = require('@ljharb/resumer')resumer(write, end)
Return a new through stream from write and end, which default to pass-through .queue() functions if not specified.
The stream starts out paused and will be resumed on the next tick unless you call .pause() first.
write and end get passed directly through to through.
install
With npm do:
npm install @ljharb/resumerlicense
MIT
