Skip to content

Instantly share code, notes, and snippets.

@dioxmio
Last active October 23, 2022 17:10
Show Gist options
  • Save dioxmio/8de3039006ebc8a4e010fe200075e0e4 to your computer and use it in GitHub Desktop.
Save dioxmio/8de3039006ebc8a4e010fe200075e0e4 to your computer and use it in GitHub Desktop.
const data = Promise.resolve(true);
async function fetchData() { return data }
// ✅ result is false even though the underlying promise is the same
fetchData() === fetchData()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment