Files

11 lines
336 B
JavaScript
Raw Permalink Normal View History

2023-03-06 14:23:39 +07:00
module.exports = require('./promise')
/* istanbul ignore next */
if (!module.exports) {
console.error('The file "%s" requires `Promise`,', module.parent.filename)
console.error('but neither `bluebird` nor the native `Promise` implementation were found.')
console.error('Please install `bluebird` yourself.')
process.exit(1)
}