Created
July 20, 2022 13:31
-
-
Save kurt-liao/353e711a4e4d4428c9adcedfe0ff7c31 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// awaiting.mjs | |
import { process } from "./some-module.mjs"; | |
const dynamic = import(computedModuleSpecifier); | |
const data = fetch(url); | |
export const output = process((await dynamic).default, await data); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment