import.meta

This commit is contained in:
Ilya Kantor 2019-03-02 23:48:12 +03:00
parent 32120fb5c1
commit a0c07342ad

View file

@ -345,4 +345,4 @@ To summarize, the core concepts are:
4. Module code is executed only once. Exports are created once and shared between importers. 4. Module code is executed only once. Exports are created once and shared between importers.
5. In production, we usually use bundlers such as [Webpack](https://webpack.js.org) to bundle modules together. 5. In production, we usually use bundlers such as [Webpack](https://webpack.js.org) to bundle modules together.
In the next chapter we'll see more examples of modules and `export/import` statements. In the next chapter we'll see more examples of modules and versatile `export/import` statements.