Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bluebird.js « main « js « bluebird « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed6226e7ea397cb13c877f405200c91778e1361a (plain)
1
2
3
4
5
6
7
8
9
10
11
"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;