promise.js 167 B

1234567
  1. 'use strict';
  2. const Promise = require('bluebird').getNewLibraryCopy();
  3. module.exports = Promise;
  4. module.exports.Promise = Promise;
  5. module.exports.default = Promise;