a068f8b0eec7b58a293ddf2aa55ac99fd9146e20733154b3b4c877feec9ee0554e79bf2b908ef5778079618bb5fbf32c8a7eb7e4f59d2bbf92ab2fe1ef51a3 291 B

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