(key: string, value: T)
| 101 | * @author: 白雾茫茫丶 |
| 102 | */ |
| 103 | export const setLocalStorageItem = <T>(key: string, value: T) => { |
| 104 | const result = JSON.stringify(value); |
| 105 | localStorage.setItem(key, result); |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * @description: 移除 localstorage 的值 |
no outgoing calls
no test coverage detected