Skip to content

Instantly share code, notes, and snippets.

View biantris's full-sized avatar
:shipit:
coding dubious things

Beatriz Oliveira biantris

:shipit:
coding dubious things
View GitHub Profile
@biantris
biantris / index.md
Created March 21, 2023 10:39
code optimization

before

async function loadData() {
  const products = await loadProducts();
  const categories = await loadCategories();
  
  return { products, categories };
}