unbox-js
v1.1.0
Published
Avoids the usage of try-catch everywhere, force user to handle error case.
Downloads
6,872
Maintainers
Readme
================================
_ _ _ __ | |__ _____ __
| | | | '_ \| '_ \ / _ \ \/ /
| |_| | | | | |_) | (_) > <
\__,_|_| |_|_.__/ \___/_/\_\
================================
What is it and why?
This is a simple function that will force the user to handle the case of reject promise.
Use for all promise, in most of the case we are not handling this case, and with unbox
we will have less error and bugs.
This avoids the usage of try-catch everywhere and is intended for a project with advance typing
Examples
const simple = async (promise: Promise<string>) => {
const result = await unbox(promise)
if (result.error) {
throw result.error
}
const { data: str } = result
return str
}
const multiple = async (promises: Array<Promise<string>>): Promise<string[]> => {
const result = await unboxAll(promises)
if (result.error) {
throw result.error
}
const { data: strs } = result
return strs
}
Don't forget to destructure the result for typing.
On these examples, if we don't handle and throw result error, data would be of type string | undefined which is not what we want on full type project.