Skip to content

Instantly share code, notes, and snippets.

@kriskowal
Created June 14, 2022 23:31
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 kriskowal/0df790b94fb201162e77035cbe00c48b to your computer and use it in GitHub Desktop.
Save kriskowal/0df790b94fb201162e77035cbe00c48b to your computer and use it in GitHub Desktop.
export { star as '*' };
const star = 42;
import * as star from './temp.js';
import { '*' as stor } from './temp.js';
console.log(star); // { '*': 42 }
console.log(stor); // 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment