- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
31 lines
789 B
JavaScript
31 lines
789 B
JavaScript
"use strict";
|
|
module.exports = function(Promise, INTERNAL) {
|
|
var PromiseReduce = Promise.reduce;
|
|
var PromiseAll = Promise.all;
|
|
|
|
function promiseAllThis() {
|
|
return PromiseAll(this);
|
|
}
|
|
|
|
function PromiseMapSeries(promises, fn) {
|
|
return PromiseReduce(promises, fn, INTERNAL, INTERNAL);
|
|
}
|
|
|
|
Promise.prototype.each = function (fn) {
|
|
return PromiseReduce(this, fn, INTERNAL, 0)
|
|
._then(promiseAllThis, undefined, undefined, this, undefined);
|
|
};
|
|
|
|
Promise.prototype.mapSeries = function (fn) {
|
|
return PromiseReduce(this, fn, INTERNAL, INTERNAL);
|
|
};
|
|
|
|
Promise.each = function (promises, fn) {
|
|
return PromiseReduce(promises, fn, INTERNAL, 0)
|
|
._then(promiseAllThis, undefined, undefined, promises, undefined);
|
|
};
|
|
|
|
Promise.mapSeries = PromiseMapSeries;
|
|
};
|
|
|