Takes a callback of any kind (returns or throws, synchronously or asynchronously) and wraps its result in a Promise.
Symbol
PromiseConstructor.try
try<T, U extends unknown[]>(callbackFn: (...args: U) => T | PromiseLike<T>, ...args: U): Promise<Awaited<T>>
@param callbackFn
A function that is called synchronously. It can do anything: either return a value, throw an error, or return a promise.
@param args
Additional arguments, that will be passed to the callback.
@returns
A Promise that is:
- Already fulfilled, if the callback synchronously returns a value.
- Already rejected, if the callback synchronously throws an error.
- Asynchronously fulfilled or rejected, if the callback returns a promise.
Try to run a function and return the result. If the function throws, return the result of the catch
function.
@param fn
The function to run
@param args
The arguments to pass to the function. This is similar to setTimeout
and avoids the extra closure.
@returns
The result of the function or the result of the catch
function