averainy's Blog
averainy
Links
Decorator
29
May 2024
How to Use Decorators to Print Log in Python
creat a decorator: def logDecorator(func): def wrapper(*args, **kwargs): print(f"Call function {func.__name__} with args {args} and kwargs …
29
May 2024
How to Use Decorators to Print Log in Typescript
creat a decorator: function logDecorator(target: any, propertyName: string, descriptor: PropertyDescriptor) { const originalMethod = …