summaryrefslogtreecommitdiff
path: root/node_modules/simple-concat
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-03 02:48:28 -0700
committer8cy <[email protected]>2020-04-03 02:48:28 -0700
commitf9159ea2d994e14180fb02ab562f0119513e67cf (patch)
tree09d14cdf05456567156738b681379d4bccd64e5c /node_modules/simple-concat
parent2020/04/03, 02:42, V1.2.1 (diff)
downloads5nical-f9159ea2d994e14180fb02ab562f0119513e67cf.tar.xz
s5nical-f9159ea2d994e14180fb02ab562f0119513e67cf.zip
2020/04/03, 02:47, V1.2.2
Diffstat (limited to 'node_modules/simple-concat')
-rw-r--r--node_modules/simple-concat/.travis.yml3
-rw-r--r--node_modules/simple-concat/LICENSE20
-rw-r--r--node_modules/simple-concat/README.md42
-rw-r--r--node_modules/simple-concat/index.js14
-rw-r--r--node_modules/simple-concat/package.json58
-rw-r--r--node_modules/simple-concat/test/basic.js41
6 files changed, 0 insertions, 178 deletions
diff --git a/node_modules/simple-concat/.travis.yml b/node_modules/simple-concat/.travis.yml
deleted file mode 100644
index f178ec0..0000000
--- a/node_modules/simple-concat/.travis.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-language: node_js
-node_js:
- - 'node'
diff --git a/node_modules/simple-concat/LICENSE b/node_modules/simple-concat/LICENSE
deleted file mode 100644
index c7e6852..0000000
--- a/node_modules/simple-concat/LICENSE
+++ /dev/null
@@ -1,20 +0,0 @@
-The 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.
diff --git a/node_modules/simple-concat/README.md b/node_modules/simple-concat/README.md
deleted file mode 100644
index 572e99c..0000000
--- a/node_modules/simple-concat/README.md
+++ /dev/null
@@ -1,42 +0,0 @@
-# simple-concat [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-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
-
-### Super-minimalist version of `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).
diff --git a/node_modules/simple-concat/index.js b/node_modules/simple-concat/index.js
deleted file mode 100644
index c2d8860..0000000
--- a/node_modules/simple-concat/index.js
+++ /dev/null
@@ -1,14 +0,0 @@
-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
- })
-}
diff --git a/node_modules/simple-concat/package.json b/node_modules/simple-concat/package.json
deleted file mode 100644
index f74994e..0000000
--- a/node_modules/simple-concat/package.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- "_from": "simple-concat@^1.0.0",
- "_id": "[email protected]",
- "_inBundle": false,
- "_integrity": "sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY=",
- "_location": "/simple-concat",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "simple-concat@^1.0.0",
- "name": "simple-concat",
- "escapedName": "simple-concat",
- "rawSpec": "^1.0.0",
- "saveSpec": null,
- "fetchSpec": "^1.0.0"
- },
- "_requiredBy": [
- "/simple-get"
- ],
- "_resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz",
- "_shasum": "7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6",
- "_spec": "simple-concat@^1.0.0",
- "_where": "E:\\Documents\\GitHub\\s5nical\\node_modules\\simple-get",
- "author": {
- "name": "Feross Aboukhadijeh",
- "email": "[email protected]",
- "url": "http://feross.org/"
- },
- "bugs": {
- "url": "https://github.com/feross/simple-concat/issues"
- },
- "bundleDependencies": false,
- "dependencies": {},
- "deprecated": false,
- "description": "Super-minimalist version of `concat-stream`. Less than 15 lines!",
- "devDependencies": {
- "standard": "^6.0.8",
- "tape": "^4.0.0"
- },
- "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.0"
-}
diff --git a/node_modules/simple-concat/test/basic.js b/node_modules/simple-concat/test/basic.js
deleted file mode 100644
index f781294..0000000
--- a/node_modules/simple-concat/test/basic.js
+++ /dev/null
@@ -1,41 +0,0 @@
-var 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, new Buffer('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)
-})