Skip to content

Instantly share code, notes, and snippets.

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 callstack-bot/37d9f1ff532e1166457fbc1440452c89 to your computer and use it in GitHub Desktop.
Save callstack-bot/37d9f1ff532e1166457fbc1440452c89 to your computer and use it in GitHub Desktop.
let counter = 3;
export async function baz() {
if (counter <= 0) {
return 'end';
}
// eslint-disable-next-line import/no-unresolved
const { foo } = await import('app1/foo');
counter--;
return `baz + ${await foo()}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment