Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / drive-store / utils / url / localid.ts
blob9adcb0687976bfb678559f02c8e11e6fe35ebabd
1 const sessionRegex = /\/u\/(\d+)\//;
2 export const getLocalID = (url = window.location.href): string | null => {
3     try {
4         const pathName = new URL(url).pathname;
5         const match = pathName.match(sessionRegex);
6         const localID = match ? match[1] : null;
7         return localID;
8     } catch {
9         return null;
10     }