(promises, fn)
| 5631 | } |
| 5632 | |
| 5633 | function PromiseMapSeries(promises, fn) { |
| 5634 | return PromiseReduce(promises, fn, INTERNAL, INTERNAL); |
| 5635 | } |
| 5636 | |
| 5637 | Promise.prototype.each = function (fn) { |
| 5638 | return PromiseReduce(this, fn, INTERNAL, 0) |
nothing calls this directly
no outgoing calls
no test coverage detected