mirror of
https://github.com/Vencord/Vesktop.git
synced 2025-02-24 06:05:09 +00:00
8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
export const localStorage = window.vcdLS = window.localStorage;
|
|
|
|
export const isFirstRun = (() => {
|
|
const key = "VCD_FIRST_RUN";
|
|
if (localStorage.getItem(key) !== null) return false;
|
|
localStorage.setItem(key, "false");
|
|
return true;
|
|
})();
|