Skip to content

Instantly share code, notes, and snippets.

@Fasteroid
Created January 14, 2025 20:07
Show Gist options
  • Save Fasteroid/911a72ace084fa495e5b193b2f4f9e09 to your computer and use it in GitHub Desktop.
Save Fasteroid/911a72ace084fa495e5b193b2f4f9e09 to your computer and use it in GitHub Desktop.
Memory leak via improper use of FinalizationRegistry
( () => {
let custodian = new FinalizationRegistry((x) => console.log(x))
let leak = {haha: "funni"}
custodian.register(leak, {leak})
} )()
@Fasteroid
Copy link
Author

It should go without saying, but like, don't do this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment