UNPKG

@zalando/zally-web-ui

Version:
15 lines (12 loc) 288 B
export const PREFIX = 'zally_'; export function createKey(key) { return `${PREFIX}${key}`; } export const Storage = { setItem(key, value) { window.localStorage.setItem(createKey(key), value); }, getItem(key) { return window.localStorage.getItem(createKey(key)); }, };