3 Matching Annotations
- Feb 2025
-
github.com github.com
-
Essentially, decorators can be used to metaprogram and add functionality to a value, without fundamentally changing its external behavior.
-
-
www.slingacademy.com www.slingacademy.com
-
function loggable(target: any, propertyKey: string, descriptor: PropertyDescriptor) { let originalMethod = descriptor.value; descriptor.value = function(...args: any[]) { console.log(`Calling ${propertyKey}`); return originalMethod.apply(this, args); }; }
-
- Nov 2020
-
github.com github.com
-
Supersedes (and first sighting at): https://github.com/wycats/javascript-decorators
-