![]() 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 : |
{ "_args": [ [ "resumer@~0.0.0", "/usr/local/lib/node_modules/forever/node_modules/tape" ] ], "_from": "resumer@>=0.0.0 <0.1.0", "_id": "resumer@0.0.0", "_inCache": true, "_installable": true, "_location": "/forever/resumer", "_npmUser": { "email": "mail@substack.net", "name": "substack" }, "_npmVersion": "1.2.2", "_phantomChildren": {}, "_requested": { "name": "resumer", "raw": "resumer@~0.0.0", "rawSpec": "~0.0.0", "scope": null, "spec": ">=0.0.0 <0.1.0", "type": "range" }, "_requiredBy": [ "/forever/tape" ], "_resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", "_shasum": "f1e8f461e4064ba39e82af3cdc2a8c893d076759", "_shrinkwrap": null, "_spec": "resumer@~0.0.0", "_where": "/usr/local/lib/node_modules/forever/node_modules/tape", "author": { "email": "mail@substack.net", "name": "James Halliday", "url": "http://substack.net" }, "bugs": { "url": "https://github.com/substack/resumer/issues" }, "dependencies": { "through": "~2.3.4" }, "description": "a through stream that starts paused and resumes on the next tick", "devDependencies": { "concat-stream": "~0.1.1", "tap": "~0.4.0", "tape": "~1.0.2" }, "directories": {}, "dist": { "shasum": "f1e8f461e4064ba39e82af3cdc2a8c893d076759", "tarball": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz" }, "homepage": "https://github.com/substack/resumer", "keywords": [ "pause", "resume", "stream", "through" ], "license": "MIT", "main": "index.js", "maintainers": [ { "name": "substack", "email": "mail@substack.net" } ], "name": "resumer", "optionalDependencies": {}, "readme": "# resumer\n\nReturn a through stream that starts out paused and resumes on the next tick,\nunless somebody called `.pause()`.\n\nThis module has the same signature as\n[through](https://npmjs.com/package/through).\n\n[](http://ci.testling.com/substack/resumer)\n\n[](http://travis-ci.org/substack/resumer)\n\n# example\n\n``` js\nvar resumer = require('resumer');\nvar s = createStream();\ns.pipe(process.stdout);\n\nfunction createStream () {\n var stream = resumer();\n stream.queue('beep boop\\n');\n return stream;\n}\n```\n\n```\n$ node example/resume.js\nbeep boop\n```\n\n# methods\n\n``` js\nvar resumer = require('resumer')\n```\n\n## resumer(write, end)\n\nReturn a new through stream from `write` and `end`, which default to\npass-through `.queue()` functions if not specified.\n\nThe stream starts out paused and will be resumed on the next tick unless you\ncall `.pause()` first.\n\n`write` and `end` get passed directly through to\n[through](https://npmjs.com/package/through).\n\n# install\n\nWith [npm](https://npmjs.org) do:\n\n```\nnpm install resumer\n```\n\n# license\n\nMIT\n", "readmeFilename": "readme.markdown", "repository": { "type": "git", "url": "git://github.com/substack/resumer.git" }, "scripts": { "test": "tap test/*.js" }, "testling": { "browsers": [ "chrome/20..latest", "firefox/10..latest", "ie/6..latest", "ipad/6", "iphone/6", "opera/11.0..latest", "safari/latest" ], "files": "test/*.js" }, "version": "0.0.0" }