Skip to content

Instantly share code, notes, and snippets.

@a-gu
Created April 16, 2022 21:19
Show Gist options
  • Save a-gu/602ff0c931ac696f016e4b790426a295 to your computer and use it in GitHub Desktop.
Save a-gu/602ff0c931ac696f016e4b790426a295 to your computer and use it in GitHub Desktop.
Search webpack chunks for functions of interest
// Retrieve functions from all chunks
const webpackChunkFns = this.webpackChunk.flatMap(c => Object.values(c[1]));
// Filter by RegEx match
webpackChunkFns.filter(f => /hello world/.test(f.toString()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment