mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-31 13:17:21 +00:00
6 lines
158 B
JavaScript
6 lines
158 B
JavaScript
|
function getSession() {
|
||
|
const sessionStr = localStorage.getItem('sessionData');
|
||
|
if (!sessionStr)
|
||
|
return null;
|
||
|
return JSON.parse(atob(sessionStr));
|
||
|
}
|