| "use strict"; | |
| module.exports = function(Promise, INTERNAL) { | |
| var PromiseReduce = Promise.reduce; | |
| Promise.prototype.each = function (fn) { | |
| return PromiseReduce(this, fn, null, INTERNAL); | |
| }; | |
| Promise.each = function (promises, fn) { | |
| return PromiseReduce(promises, fn, null, INTERNAL); | |
| }; | |
| }; |