Skip to content

Instantly share code, notes, and snippets.

View edorivai's full-sized avatar

Edo Rivai edorivai

View GitHub Profile
async function() {
try {
const someValue = await getSomeValue();
doSomethingWith(someValue);
} catch (error) {
console.error(error);
}
}
async function() {