This commit is contained in:
Violet.Lee 2019-09-18 04:14:13 +09:00 committed by GitHub
parent 646989dd47
commit 087d09a48d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,5 +94,5 @@ Dynamic imports work in regular scripts, they don't require `script type="module
```smart
Although `import()` looks like a function call, it's a special syntax that just happens to use parentheses (similar to `super()`).
So we can't copy `import` to a variable or use `.call/apply` with it. That's not a function.
So we can't copy `import` to a variable or use `call/apply` with it. That's not a function.
```