Created
August 26, 2020 12:13
-
-
Save jakub-g/99dff9a33ebaf5c04473aa6c6d09c086 to your computer and use it in GitHub Desktop.
non-critical-nested-imports.js (https://twitter.com/__jakub_g/status/1298588225062285312)
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
// app.js | |
import { criticalHelper } from './utils.js' | |
let foo = criticalHelper(); | |
// utils.js | |
import { nestedHelper } from './nested_helper.js' | |
export function criticalHelper() {/*...*/} | |
export function otherHelper(str) { | |
// nestedHelper recursively depends on 5k of code | |
return nestedHelper(str); | |
} | |
// Now repeat this pattern 30x across the codebase | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment