mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-22 17:22:05 -07:00
15 lines
487 B
JavaScript
15 lines
487 B
JavaScript
// Local storage handler
|
|
|
|
const localStorageWalletKey = 'fullstack-wallet-info'
|
|
|
|
// Detect if the app is running in a browser.
|
|
export const isBrowser = () => typeof window !== 'undefined'
|
|
|
|
export const getWalletInfo = () =>
|
|
isBrowser() && window.localStorage.getItem(localStorageWalletKey)
|
|
? JSON.parse(window.localStorage.getItem(localStorageWalletKey))
|
|
: {}
|
|
|
|
export const setWalletInfo = wallet =>
|
|
window.localStorage.setItem(localStorageWalletKey, JSON.stringify(wallet))
|