Skip to content

Instantly share code, notes, and snippets.

@remojansen
remojansen / class_decorator.ts
Last active September 14, 2023 14:54
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);
}
@staltz
staltz / introrx.md
Last active March 3, 2025 08:27
The introduction to Reactive Programming you've been missing