(aKey)
| 3 | // %1 - unique script id |
| 4 | |
| 5 | function GM_deleteValue(aKey) { |
| 6 | localStorage.removeItem("%1" + aKey); |
| 7 | } |
| 8 | |
| 9 | function GM_getValue(aKey, aDefault) { |
| 10 | var val = localStorage.getItem("%1" + aKey) |
nothing calls this directly
no test coverage detected