Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /*
  2. "Fake Decorator" just so i get options (Don't use this term people will laugh at you)
  3. */
  4. function Log(namespace){
  5. //My actual decorator function
  6. return (myClassFunction)=>{
  7. storage.push({app:myClassFunction,namespace})
  8. //now i have the class and the namespace
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement