terrible/app/utils/singleton.js
2024-03-12 11:20:28 -05:00

10 lines
218 B
JavaScript

export function singleton(key, value) {
global.__singletons ??= {};
global.__singletons[key] ??= value;
return global.__singletons[key];
}
singleton.reset = function (key) {
delete global.__singletons[key];
}