Merge branch 'develop'
This commit is contained in:
commit
fc32cc283a
1 changed files with 8 additions and 1 deletions
|
@ -56,7 +56,14 @@ export const IndexDBStorageImpl = IndexDBStorageExtern.impl({
|
|||
|
||||
export const BrowserSyncStorageImpl = BrowserSyncStorageExtern.impl({
|
||||
name: STORAGE_NAME,
|
||||
get: async (key) => JSONR.parse(await browserSyncStorage.getItem(key)),
|
||||
get: async (key) => {
|
||||
const value: any = await browserSyncStorage.getItem(key)
|
||||
try {
|
||||
return JSONR.parse(value)
|
||||
} catch {
|
||||
return value
|
||||
}
|
||||
},
|
||||
set: (key, value) => browserSyncStorage.setItem(key, JSONR.stringify(value)),
|
||||
remove: browserSyncStorage.removeItem,
|
||||
clear: browserSyncStorage.clear,
|
||||
|
|
Loading…
Reference in a new issue