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