Code coverage report for debug\bluebird.js

Statements: 100% (11 / 11)      Branches: 100% (4 / 4)      Functions: 100% (1 / 1)      Lines: 100% (8 / 8)      Ignored: none     

All files » debug\ » bluebird.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14  8 8 8 12   12   8 8 8      
(function () { "use strict";
var old;
if (typeof Promise !== "undefined") old = Promise;
function noConflict() {
    try { if (Promise === bluebird) Promise = old; }
    catch (e) {}
    return bluebird;
}
var bluebird = require("./promise.js")();
bluebird.noConflict = noConflict;
module.exports = bluebird;
 
}());