Skip to content

Instantly share code, notes, and snippets.

@Yooooomi
Last active December 18, 2018 15:39
Show Gist options
  • Save Yooooomi/7bcf6f19cee147650e5d3c81aee8277d to your computer and use it in GitHub Desktop.
Save Yooooomi/7bcf6f19cee147650e5d3c81aee8277d to your computer and use it in GitHub Desktop.
Infinite callable Javascript Object
const nullFn = () => { };
const proxy = {
get: function () {
return new Proxy(nullFn, proxy);
},
};
const infinite = new Proxy(nullFn, proxy);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment