2020-03-31 20:03:38 +00:00
|
|
|
export function put(key: string, value: any) {
|
|
|
|
window.storage.put(key, value);
|
2019-05-16 22:32:11 +00:00
|
|
|
}
|
|
|
|
|
2020-03-31 20:03:38 +00:00
|
|
|
export function remove(key: string) {
|
|
|
|
window.storage.remove(key);
|
2019-05-16 22:32:11 +00:00
|
|
|
}
|