Skip to content

Instantly share code, notes, and snippets.

@gre
Last active May 17, 2024 03:35
Show Gist options
  • Save gre/f3f9c5e8e3b1bf95ef2468b6798a057d to your computer and use it in GitHub Desktop.
Save gre/f3f9c5e8e3b1bf95ef2468b6798a057d to your computer and use it in GitHub Desktop.
async function suspenseReadToPromise(read, ...args) {
let value;
try {
value = read(...args);
} catch (e) {
if (e && typeof e.then === "function") {
value = await e;
}
else {
throw e;
}
}
return value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment