Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 732 Bytes

readme.md

File metadata and controls

35 lines (20 loc) · 732 Bytes

asde Build Status codecov

Easy error handling with async await and destructuring for promises

Install

$ npm install @gradeup/asde

Usage

const asde = require('@gradeup/asde');
const promise = Promise.reject(new Error('Something went wrong'));
const fn = async () => await asde(p);
//=> [{ message: 'Something went wrong' }, null]

API

asde(input)

input

Type: Promise

Promise or any thenable to resolve

License

MIT © Nikhil Srivastava