Skip to content

Instantly share code, notes, and snippets.

View Aracturat's full-sized avatar
🎯
Focusing

Nikolay Dozmorov Aracturat

🎯
Focusing
  • Novosibirsk
View GitHub Profile
@remojansen
remojansen / class_decorator.ts
Last active July 30, 2025 05:53
TypeScript Decorators Examples
function logClass(target: any) {
// save a reference to the original constructor
var original = target;
// a utility function to generate instances of a class
function construct(constructor, args) {
var c : any = function () {
return constructor.apply(this, args);
}