Repositorio del curso CCOM4030 el semestre B91 del proyecto Paz para la Mujer
arvin.torres e3ca5d94a7 Campanas de Paz para la Mujer 4 år sedan
..
example Campanas de Paz para la Mujer 4 år sedan
test Campanas de Paz para la Mujer 4 år sedan
.travis.yml Campanas de Paz para la Mujer 4 år sedan
LICENSE Campanas de Paz para la Mujer 4 år sedan
index.js Campanas de Paz para la Mujer 4 år sedan
package.json Campanas de Paz para la Mujer 4 år sedan
readme.markdown Campanas de Paz para la Mujer 4 år sedan

readme.markdown

resumer

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.

browser support

build status

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 boop

methods

var resumer = require('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 resumer

license

MIT