Created
July 2, 2019 12:13
-
-
Save goofmint/05864466e40e4a3c54dff64c2ada23cf 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
| <script type="module"> | |
| import * as module from './utils.mjs'; | |
| module.default(); | |
| // → logs 'Hi from the default export!' | |
| module.doStuff(); | |
| // → logs 'Doing stuff…' | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment