1.0.0 • Published 5 years ago

async-error-captured v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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

1.0.0

5 years ago