core/apps/webapp/app/utils/singleton.ts
Harshith Mullapudi 060668e8c0 Fix: echo v2
2025-05-27 23:12:05 +05:30

7 lines
230 B
TypeScript

export function singleton<T>(name: string, getValue: () => T): T {
const thusly = globalThis as any;
thusly.__echo_singletons ??= {};
thusly.__echo_singletons[name] ??= getValue();
return thusly.__echo_singletons[name];
}