Skip to content

Instantly share code, notes, and snippets.

@KleaTech
Created May 14, 2025 12:41
Show Gist options
  • Save KleaTech/7678919369c023d01e1e70b37e52c41a to your computer and use it in GitHub Desktop.
Save KleaTech/7678919369c023d01e1e70b37e52c41a to your computer and use it in GitHub Desktop.
Arbitrary object methods and properties in JavaScript
function createPseudoObject() {
return new Proxy(new Function(), { get() { return createPseudoObject() } })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment