aboutsummaryrefslogtreecommitdiff
path: root/node_modules/async/internal/concat.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-13 21:53:45 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-13 21:53:45 +0100
commit18c96ab6926658d6707f1f3be935078f1cb08411 (patch)
tree418195a292ce8811679d4c2b1cb7bb0316669d62 /node_modules/async/internal/concat.js
parent9657e01be14fa5baa4067da65aff94faf6c973e0 (diff)
node modules
Diffstat (limited to 'node_modules/async/internal/concat.js')
-rw-r--r--node_modules/async/internal/concat.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/node_modules/async/internal/concat.js b/node_modules/async/internal/concat.js
deleted file mode 100644
index f2ffb5379..000000000
--- a/node_modules/async/internal/concat.js
+++ /dev/null
@@ -1,18 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = concat;
-function concat(eachfn, arr, fn, callback) {
- var result = [];
- eachfn(arr, function (x, index, cb) {
- fn(x, function (err, y) {
- result = result.concat(y || []);
- cb(err);
- });
- }, function (err) {
- callback(err, result);
- });
-}
-module.exports = exports["default"]; \ No newline at end of file