index.js 336 B

1234567891011
  1. module.exports = require('./promise')
  2. /* istanbul ignore next */
  3. if (!module.exports) {
  4. console.error('The file "%s" requires `Promise`,', module.parent.filename)
  5. console.error('but neither `bluebird` nor the native `Promise` implementation were found.')
  6. console.error('Please install `bluebird` yourself.')
  7. process.exit(1)
  8. }