2
0
Files
bot/packages/js/src/utils/sessionStorage.ts

18 lines
364 B
TypeScript
Raw Normal View History

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 */
}
}