Code coverage report for debug\each.js

Statements: 100% (6 / 6)      Branches: 100% (0 / 0)      Functions: 100% (3 / 3)      Lines: 100% (6 / 6)      Ignored: none     

All files » debug\ » each.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  8 8   8 30     8 6          
(function () { "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);
};
};
 
}());