Last active
May 11, 2020 20:51
-
-
Save ersinakinci/d9e2a57dd5acaaf8de7362272bd3d719 to your computer and use it in GitHub Desktop.
Webpack tree shaking test (experiment 1: export, reexport, import): functions
This file contains 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
Function # | Exported from bar | reexported from reexportBar | imported by index | Used in bar | Used in reexportBar | Used in index | |
---|---|---|---|---|---|---|---|
1 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | |
2 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | |
3 | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ✔️ | |
4 | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ❌ | |
5 | ✔️ | ✔️ | ✔️ | ❌ | ✔️ | ✔️ | |
6 | ✔️ | ✔️ | ✔️ | ❌ | ✔️ | ❌ | |
7 | ✔️ | ✔️ | ✔️ | ❌ | ❌ | ✔️ | |
8 | ✔️ | ✔️ | ✔️ | ❌ | ❌ | ❌ | |
9 | ✔️ | ✔️ | ❌ | ✔️ | ✔️ | — | |
10 | ✔️ | ✔️ | ❌ | ✔️ | ❌ | — | |
11 | ✔️ | ✔️ | ❌ | ❌ | ✔️ | — | |
12 | ✔️ | ✔️ | ❌ | ❌ | ❌ | — | |
13 | ✔️ | ❌ | ❌ | ✔️ | — | — | |
14 | ✔️ | ❌ | ❌ | ❌ | — | — | |
15 | ❌ | ❌ | ❌ | ✔️ | — | — | |
16 | ❌ | ❌ | ❌ | ❌ | — | — |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment