updated sys and created publi
This commit is contained in:
+15
-44
@@ -1,46 +1,33 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
{
|
||||
"raw": "isstream@~0.1.2",
|
||||
"scope": null,
|
||||
"escapedName": "isstream",
|
||||
"name": "isstream",
|
||||
"rawSpec": "~0.1.2",
|
||||
"spec": ">=0.1.2 <0.2.0",
|
||||
"type": "range"
|
||||
},
|
||||
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/request"
|
||||
"isstream@0.1.2",
|
||||
"/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys"
|
||||
]
|
||||
],
|
||||
"_from": "isstream@>=0.1.2 <0.2.0",
|
||||
"_development": true,
|
||||
"_from": "isstream@0.1.2",
|
||||
"_id": "isstream@0.1.2",
|
||||
"_inCache": true,
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
|
||||
"_location": "/isstream",
|
||||
"_nodeVersion": "1.4.3",
|
||||
"_npmUser": {
|
||||
"name": "rvagg",
|
||||
"email": "rod@vagg.org"
|
||||
},
|
||||
"_npmVersion": "2.6.1",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"raw": "isstream@~0.1.2",
|
||||
"scope": null,
|
||||
"escapedName": "isstream",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "isstream@0.1.2",
|
||||
"name": "isstream",
|
||||
"rawSpec": "~0.1.2",
|
||||
"spec": ">=0.1.2 <0.2.0",
|
||||
"type": "range"
|
||||
"escapedName": "isstream",
|
||||
"rawSpec": "0.1.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.1.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/request"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
|
||||
"_shasum": "47e63f7af55afa6f92e1500e690eb8b8529c099a",
|
||||
"_shrinkwrap": null,
|
||||
"_spec": "isstream@~0.1.2",
|
||||
"_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/request",
|
||||
"_spec": "0.1.2",
|
||||
"_where": "/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys",
|
||||
"author": {
|
||||
"name": "Rod Vagg",
|
||||
"email": "rod@vagg.org"
|
||||
@@ -48,7 +35,6 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/rvagg/isstream/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"description": "Determine if an object is a Stream",
|
||||
"devDependencies": {
|
||||
"core-util-is": "~1.0.0",
|
||||
@@ -57,12 +43,6 @@
|
||||
"string_decoder": "~0.10.x",
|
||||
"tape": "~2.12.3"
|
||||
},
|
||||
"directories": {},
|
||||
"dist": {
|
||||
"shasum": "47e63f7af55afa6f92e1500e690eb8b8529c099a",
|
||||
"tarball": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"
|
||||
},
|
||||
"gitHead": "cd39cba6da939b4fc9110825203adc506422c3dc",
|
||||
"homepage": "https://github.com/rvagg/isstream",
|
||||
"keywords": [
|
||||
"stream",
|
||||
@@ -73,16 +53,7 @@
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "isstream.js",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "rvagg",
|
||||
"email": "rod@vagg.org"
|
||||
}
|
||||
],
|
||||
"name": "isstream",
|
||||
"optionalDependencies": {},
|
||||
"readme": "# isStream\n\n[](http://travis-ci.org/rvagg/isstream)\n\n**Test if an object is a `Stream`**\n\n[](https://nodei.co/npm/isstream/)\n\nThe missing `Stream.isStream(obj)`: determine if an object is standard Node.js `Stream`. Works for Node-core `Stream` objects (for 0.8, 0.10, 0.11, and in theory, older and newer versions) and all versions of **[readable-stream](https://github.com/isaacs/readable-stream)**.\n\n## Usage:\n\n```js\nvar isStream = require('isstream')\nvar Stream = require('stream')\n\nisStream(new Stream()) // true\n\nisStream({}) // false\n\nisStream(new Stream.Readable()) // true\nisStream(new Stream.Writable()) // true\nisStream(new Stream.Duplex()) // true\nisStream(new Stream.Transform()) // true\nisStream(new Stream.PassThrough()) // true\n```\n\n## But wait! There's more!\n\nYou can also test for `isReadable(obj)`, `isWritable(obj)` and `isDuplex(obj)` to test for implementations of Streams2 (and Streams3) base classes.\n\n```js\nvar isReadable = require('isstream').isReadable\nvar isWritable = require('isstream').isWritable\nvar isDuplex = require('isstream').isDuplex\nvar Stream = require('stream')\n\nisReadable(new Stream()) // false\nisWritable(new Stream()) // false\nisDuplex(new Stream()) // false\n\nisReadable(new Stream.Readable()) // true\nisReadable(new Stream.Writable()) // false\nisReadable(new Stream.Duplex()) // true\nisReadable(new Stream.Transform()) // true\nisReadable(new Stream.PassThrough()) // true\n\nisWritable(new Stream.Readable()) // false\nisWritable(new Stream.Writable()) // true\nisWritable(new Stream.Duplex()) // true\nisWritable(new Stream.Transform()) // true\nisWritable(new Stream.PassThrough()) // true\n\nisDuplex(new Stream.Readable()) // false\nisDuplex(new Stream.Writable()) // false\nisDuplex(new Stream.Duplex()) // true\nisDuplex(new Stream.Transform()) // true\nisDuplex(new Stream.PassThrough()) // true\n```\n\n*Reminder: when implementing your own streams, please [use **readable-stream** rather than core streams](http://r.va.gg/2014/06/why-i-dont-use-nodes-core-stream-module.html).*\n\n\n## License\n\n**isStream** is Copyright (c) 2015 Rod Vagg [@rvagg](https://twitter.com/rvagg) and licenced under the MIT licence. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.\n",
|
||||
"readmeFilename": "README.md",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/rvagg/isstream.git"
|
||||
|
||||
Reference in New Issue
Block a user