2
0
Files
bot/packages/js/src/utils/sessionStorage.ts
2023-01-16 12:13:21 +01:00

18 lines
364 B
TypeScript

const sessionStorageKey = 'resultId'
export const getExistingResultIdFromSession = () => {
try {
return sessionStorage.getItem(sessionStorageKey) ?? undefined
} catch {
/* empty */
}
}
export const setResultInSession = (resultId: string) => {
try {
return sessionStorage.setItem(sessionStorageKey, resultId)
} catch {
/* empty */
}
}