X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=node_modules%2Funcss%2Fnode_modules%2Fform-data%2Fnode_modules%2Fasync%2Finternal%2Fconcat.js;fp=node_modules%2Funcss%2Fnode_modules%2Fform-data%2Fnode_modules%2Fasync%2Finternal%2Fconcat.js;h=f2ffb5379548906d410808274da617ee7e47bb3f;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/node_modules/uncss/node_modules/form-data/node_modules/async/internal/concat.js b/node_modules/uncss/node_modules/form-data/node_modules/async/internal/concat.js new file mode 100644 index 000000000..f2ffb5379 --- /dev/null +++ b/node_modules/uncss/node_modules/form-data/node_modules/async/internal/concat.js @@ -0,0 +1,18 @@ +"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