Last active
May 17, 2024 03:35
-
-
Save gre/f3f9c5e8e3b1bf95ef2468b6798a057d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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