This commit is contained in:
Alexey Pyltsyn 2019-05-13 23:14:29 +03:00
parent 0490fa2549
commit 383c3db3c9

View file

@ -409,7 +409,7 @@ Import:
- `import {default as x} from "mod"`
- Everything:
- `import * as obj from "mod"`
- Only fetch/evalute the module, don't import:
- Only fetch/evaluate the module, don't import:
- `import "mod"`
We can put import/export statements below or after other code, that doesn't matter.