Skip to content

Instantly share code, notes, and snippets.

@cdcharlebois
Created November 15, 2022 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdcharlebois/2a1ea75b6d8aa4a0a4fd5e5c29f7148d to your computer and use it in GitHub Desktop.
Save cdcharlebois/2a1ea75b6d8aa4a0a4fd5e5c29f7148d to your computer and use it in GitHub Desktop.
window.a = () => {console.log('hello')}
const beforeFunc = (otherFunc) => {
return () => {
console.log('me first');
otherFunc();
}
}
window.a = beforeFunc(window.a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment