Skip to content

Instantly share code, notes, and snippets.

@bhaibel
Last active October 30, 2018 01:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhaibel/896ecb23b8f17d069f32355a3efd10f0 to your computer and use it in GitHub Desktop.
Save bhaibel/896ecb23b8f17d069f32355a3efd10f0 to your computer and use it in GitHub Desktop.
metrics & async/await snippet 6
async function postMetrics(eventName, metadata) {
return fetch(METRICS_URL, {method: 'POST', data: { eventName, metadata }}).catch(noop);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment