From 954583f3d56fbfb60321725f13ad092e536e3737 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 22:10:16 +0100 Subject: Removed node_modules --- node_modules/foreachasync/forEachAsync.js | 35 ------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 node_modules/foreachasync/forEachAsync.js (limited to 'node_modules/foreachasync/forEachAsync.js') diff --git a/node_modules/foreachasync/forEachAsync.js b/node_modules/foreachasync/forEachAsync.js deleted file mode 100644 index 8790d78..0000000 --- a/node_modules/foreachasync/forEachAsync.js +++ /dev/null @@ -1,35 +0,0 @@ -/*jshint -W054 */ -;(function (exports) { - 'use strict'; - - function forEachAsync(arr, fn, thisArg) { - var dones = [] - , index = -1 - ; - - function next(BREAK, result) { - index += 1; - - if (index === arr.length || BREAK === forEachAsync.__BREAK) { - dones.forEach(function (done) { - done.call(thisArg, result); - }); - return; - } - - fn.call(thisArg, next, arr[index], index, arr); - } - - setTimeout(next, 4); - - return { - then: function (_done) { - dones.push(_done); - return this; - } - }; - } - forEachAsync.__BREAK = {}; - - exports.forEachAsync = forEachAsync; -}('undefined' !== typeof exports && exports || new Function('return this')())); -- cgit v1.2.3