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