A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/shared/lib/storage-helpers.js

23 lines
511 B

import localforage from 'localforage';
export async function getStorageItem(key) {
try {
const serializedData = await localforage.getItem(key);
if (serializedData === null) {
return undefined;
}
return JSON.parse(serializedData);
} catch (err) {
return undefined;
}
}
export async function setStorageItem(key, value) {
try {
const serializedData = JSON.stringify(value);
await localforage.setItem(key, serializedData);
} catch (err) {
console.warn(err);
}
}