Skip to content

Checkson/async-error-captured

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

async-error-captured

A tool method to catch async function errors.

install

$ npm install async-error-captured --save

Or

$ yarn add async-error-captured

Usage

const errorCaptured = require('async-error-captured');

const handleFunc = async () => {
  const [err, res] = await errorCaptured(asyncFunc, args1, args2, ...);
  if (err) {
    throw new Error(err);
  }
  console.log(res);
}

License

MIT

About

A tool method to catch async function errors.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published