0.5.2 • Published 7 years ago

async-await-error-handling v0.5.2

Weekly downloads
27
License
MIT
Repository
github
Last release
7 years ago

async-await-error-handling

build pass

Error handling friendly for async/await in ts and js.

Installation

Install the pkg with npm:

npm install async-await-error-handling --save

or yarn

yarn add async-await-error-handling

or bower

bower install async-await-error-handling

Usage

import awaitTo from 'async-await-error-handling';

async getData() {
    const [err, data] = await awaitTo(fetch('./data/person2.json'));
    
    if(err){
        throw err;
    }

    return data;
}

LICENSE

MIT