(v)
| 144 | }); |
| 145 | |
| 146 | async function doSet(v) { |
| 147 | await GM_setValue(myKey, v); |
| 148 | iLog(`✏️ Set <b>${escHtml(myKey)}</b> = <b>${escHtml(JSON.stringify(v))}</b>`, 'info'); |
| 149 | await pushKV(); |
| 150 | } |
| 151 | |
| 152 | async function doDel() { |
| 153 | await GM_deleteValue(myKey); |
no test coverage detected