0.3.0 • Published 6 years ago

bluebird-async-wrap v0.3.0

Weekly downloads
207
License
MIT
Repository
github
Last release
6 years ago

Bluebird Async Wrapper

Helper to migrate from Bluebird to async/await by wrapping each async method with bluebird Resolve

Install

npm install bluebird-async-wrap

Usage

const bluebirdify = require('bluebird-async-wrap');

class Test {
 async asyncMethod () {
   return true;
 }

 syncMethod () {
   return true;
 }
}

bluebirdify(Test);
0.3.0

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago