Files
biomedjs/node_modules/bluebird/js/release/bluebird.js

12 lines
291 B
JavaScript
Raw Permalink Normal View History

2015-04-20 05:31:12 -04:00
"use strict";
var old;
if (typeof Promise !== "undefined") old = Promise;
function noConflict() {
try { if (Promise === bluebird) Promise = old; }
catch (e) {}
return bluebird;
}
2015-12-16 09:12:35 -08:00
var bluebird = require("./promise")();
2015-04-20 05:31:12 -04:00
bluebird.noConflict = noConflict;
module.exports = bluebird;