UNPKG

tbarequest

Version:

A wrapper to fetch data from The Blue Alliance API

10 lines (9 loc) 205 B
export async function tryCatch(promise) { try { const data = await promise; return { data, error: null }; } catch (error) { return { data: null, error: error }; } }