summaryrefslogtreecommitdiff
path: root/build/internal/concat.js
diff options
context:
space:
mode:
Diffstat (limited to 'build/internal/concat.js')
-rw-r--r--build/internal/concat.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/build/internal/concat.js b/build/internal/concat.js
deleted file mode 100644
index 4fd7b26..0000000
--- a/build/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