test/basic.js000066400000001471151113274010007142 0ustar00var concat = require('../') var stream = require('stream') var test = require('tape') test('basic', function (t) { t.plan(2) var s = new stream.PassThrough() concat(s, function (err, buf) { t.error(err) t.deepEqual(buf, Buffer.from('abc123456789')) }) s.write('abc') setTimeout(function () { s.write('123') }, 10) setTimeout(function () { s.write('456') }, 20) setTimeout(function () { s.end('789') }, 30) }) test('error', function (t) { t.plan(2) var s = new stream.PassThrough() concat(s, function (err, buf) { t.ok(err, 'got expected error') t.ok(!buf) }) s.write('abc') setTimeout(function () { s.write('123') }, 10) setTimeout(function () { s.write('456') }, 20) setTimeout(function () { s.emit('error', new Error('error')) }, 30) }) .travis.yml000066400000000045151113274010006651 0ustar00language: node_js node_js: - lts/* LICENSE000066400000002071151113274010005546 0ustar00The MIT License (MIT) Copyright (c) Feross Aboukhadijeh Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. README.md000066400000002351151113274010006021 0ustar00# simple-concat [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url] [travis-image]: https://img.shields.io/travis/feross/simple-concat/master.svg [travis-url]: https://travis-ci.org/feross/simple-concat [npm-image]: https://img.shields.io/npm/v/simple-concat.svg [npm-url]: https://npmjs.org/package/simple-concat [downloads-image]: https://img.shields.io/npm/dm/simple-concat.svg [downloads-url]: https://npmjs.org/package/simple-concat [standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg [standard-url]: https://standardjs.com ### Super-minimalist version of [`concat-stream`](https://github.com/maxogden/concat-stream). Less than 15 lines! ## install ``` npm install simple-concat ``` ## usage This example is longer than the implementation. ```js var s = new stream.PassThrough() concat(s, function (err, buf) { if (err) throw err console.error(buf) }) s.write('abc') setTimeout(function () { s.write('123') }, 10) setTimeout(function () { s.write('456') }, 20) setTimeout(function () { s.end('789') }, 30) ``` ## license MIT. Copyright (c) [Feross Aboukhadijeh](http://feross.org). index.js000066400000000610151113274010006203 0ustar00/*! simple-concat. MIT License. Feross Aboukhadijeh */ module.exports = function (stream, cb) { var chunks = [] stream.on('data', function (chunk) { chunks.push(chunk) }) stream.once('end', function () { if (cb) cb(null, Buffer.concat(chunks)) cb = null }) stream.once('error', function (err) { if (cb) cb(err) cb = null }) } package.json000066400000003525151113274010007034 0ustar00{ "_args": [ [ "simple-concat@1.0.1", "/home/freeclou/app.optimyar.com/backend" ] ], "_from": "simple-concat@1.0.1", "_id": "simple-concat@1.0.1", "_inBundle": false, "_integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", "_location": "/simple-concat", "_phantomChildren": {}, "_requested": { "type": "version", "registry": true, "raw": "simple-concat@1.0.1", "name": "simple-concat", "escapedName": "simple-concat", "rawSpec": "1.0.1", "saveSpec": null, "fetchSpec": "1.0.1" }, "_requiredBy": [ "/prebuild-install/simple-get", "/simple-get" ], "_resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", "_spec": "1.0.1", "_where": "/home/freeclou/app.optimyar.com/backend", "author": { "name": "Feross Aboukhadijeh", "email": "feross@feross.org", "url": "https://feross.org" }, "bugs": { "url": "https://github.com/feross/simple-concat/issues" }, "dependencies": {}, "description": "Super-minimalist version of `concat-stream`. Less than 15 lines!", "devDependencies": { "standard": "*", "tape": "^5.0.1" }, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "homepage": "https://github.com/feross/simple-concat", "keywords": [ "concat", "concat-stream", "concat stream" ], "license": "MIT", "main": "index.js", "name": "simple-concat", "repository": { "type": "git", "url": "git://github.com/feross/simple-concat.git" }, "scripts": { "test": "standard && tape test/*.js" }, "version": "1.0.1" }