to-bluebird
v1.0.2
Published
Convert any type of promise to a Bluebird promise
Downloads
127
Readme
To Bluebird 
Convert any type of promise to a Bluebird promise
Install
npm install to-bluebird bluebird
Usage
const toBluebird = require("to-bluebird");
const es6Promise = new Promise(resolve => resolve("Hello World!")); // Regular native promise.
const bluebirdPromise = toBluebird(es6Promise); // Bluebird promise.
API
toBluebird(promise)
promise
Type: PromiseLike
The promise to convert.