export const DEFAULT_STORAGE_NAMESPACE = "applicaster.v2"; export const NAMESPACE_STORAGE_SEPARATOR_WEB = "_::_"; export const getWebStorageKey = ( key: String, namespace: String = DEFAULT_STORAGE_NAMESPACE ) => { return `${namespace}${NAMESPACE_STORAGE_SEPARATOR_WEB}${key}`; };