mirror of
https://git.lavender.software/lavender/watch-party.git
synced 2024-11-23 18:47:32 +00:00
7 lines
114 B
JavaScript
7 lines
114 B
JavaScript
let instance = null;
|
|
export const state = () => {
|
|
if (!instance) {
|
|
instance = {};
|
|
}
|
|
return instance;
|
|
};
|