Skip to content

Instantly share code, notes, and snippets.

@phenomnomnominal
Last active May 29, 2019 17:45
Show Gist options
  • Save phenomnomnominal/26db020ed49477ba0ccc5f2d8fbd6e14 to your computer and use it in GitHub Desktop.
Save phenomnomnominal/26db020ed49477ba0ccc5f2d8fbd6e14 to your computer and use it in GitHub Desktop.
Example of a class decorator-like function
function Decorator (constructor) {
constructor.bang = 'boop!';
return constructor;
}
const MyClass = Decorator(class _MyClass { });
console.log(MyClass.bang);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment