{"_id":"reversepoint","_rev":"88087","name":"reversepoint","description":"Reverse an object stream","dist-tags":{"latest":"0.2.1"},"maintainers":[{"name":"andreasmadsen","email":""}],"time":{"modified":"2021-06-03T10:28:38.000Z","created":"2013-03-28T12:24:57.653Z","0.2.1":"2014-09-24T20:41:37.432Z","0.2.0":"2013-03-28T12:24:57.653Z"},"users":{},"author":{"name":"Andreas Madsen","email":"amwebdk@gmail.com"},"repository":{"type":"git","url":"git://github.com/AndreasMadsen/reversepoint.git"},"versions":{"0.2.1":{"name":"reversepoint","description":"Reverse an object stream","version":"0.2.1","author":{"name":"Andreas Madsen","email":"amwebdk@gmail.com"},"scripts":{"test":"tap test.js"},"main":"./reversepoint.js","repository":{"type":"git","url":"git://github.com/AndreasMadsen/reversepoint.git"},"keywords":["reverse","stream"],"devDependencies":{"tap":"0.4.x"},"license":"MIT","bugs":{"url":"https://github.com/AndreasMadsen/reversepoint/issues"},"homepage":"https://github.com/AndreasMadsen/reversepoint","_id":"reversepoint@0.2.1","_shasum":"d2ac3ff4d665cf0ff72296b7a78ee7237f6593f5","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"andreasmadsen","email":"amwebdk@gmail.com"},"maintainers":[{"name":"andreasmadsen","email":""}],"dist":{"shasum":"d2ac3ff4d665cf0ff72296b7a78ee7237f6593f5","size":1845,"noattachment":false,"key":"/reversepoint/-/reversepoint-0.2.1.tgz","tarball":"http://registry.cnpm.dingdandao.com/reversepoint/download/reversepoint-0.2.1.tgz"},"directories":{},"publish_time":1411591297432,"_cnpm_publish_time":1411591297432,"_hasShrinkwrap":false},"0.2.0":{"name":"reversepoint","description":"Reverse an object stream","version":"0.2.0","author":{"name":"Andreas Madsen","email":"amwebdk@gmail.com"},"scripts":{"test":"tap test.js"},"main":"./reversepoint.js","repository":{"type":"git","url":"git://github.com/AndreasMadsen/reversepoint.git"},"keywords":["reverse","stream"],"devDependencies":{"tap":"0.4.x"},"license":"MIT","engines":{"node":"0.10","npm":"1"},"readmeFilename":"README.md","_id":"reversepoint@0.2.0","dist":{"shasum":"3e4a439300025cf788e02342c81fe3ef240ce0f2","size":1882,"noattachment":false,"key":"/reversepoint/-/reversepoint-0.2.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/reversepoint/download/reversepoint-0.2.0.tgz"},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"andreasmadsen","email":"amwebdk@gmail.com"},"maintainers":[{"name":"andreasmadsen","email":""}],"directories":{},"publish_time":1364473497653,"_cnpm_publish_time":1364473497653,"_hasShrinkwrap":false}},"readme":"#reversepoint\n\n> Reverse an object stream\n\n## Installation\n\n```sheel\nnpm install reversepoint\n```\n\n## Documentation\n\n`reversepoint` is a `Transform` stream there takes an object stream and\noutputs an object stream.\n\n```javascript\nvar reversepoint = require('reversepoint');\n\n// Reversepoint store the data objects and outputs them after `.end()` is called.\n// Because it stores the data object this will consume a lot of memory when if\n// the input stream is huge.\nvar reverse = reversepoint();\n\nreverse.write(1);\nreverse.write(2);\nreverse.end();\n\nreverse.read(); // 2\nreverse.read(); // 1\n```\n\n##License\n\n**The software is license under \"MIT\"**\n\n> Copyright (c) 2013 Andreas Madsen\n>\n> Permission is hereby granted, free of charge, to any person obtaining a copy\n> of this software and associated documentation files (the \"Software\"), to deal\n> in the Software without restriction, including without limitation the rights\n> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n> copies of the Software, and to permit persons to whom the Software is\n> furnished to do so, subject to the following conditions:\n>\n> The above copyright notice and this permission notice shall be included in\n> all copies or substantial portions of the Software.\n>\n> THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n> THE SOFTWARE.\n","_attachments":{},"homepage":"https://github.com/AndreasMadsen/reversepoint","bugs":{"url":"https://github.com/AndreasMadsen/reversepoint/issues"},"license":"MIT"}