Skip to content

Instantly share code, notes, and snippets.

@jakub-g
Created August 26, 2020 12:13
Show Gist options
  • Save jakub-g/99dff9a33ebaf5c04473aa6c6d09c086 to your computer and use it in GitHub Desktop.
Save jakub-g/99dff9a33ebaf5c04473aa6c6d09c086 to your computer and use it in GitHub Desktop.
// 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