This commit is contained in:
Florian Bernard
2026-08-28 14:36:49 +00:00
parent d6e186a7ed
commit 3168c4ac01
2 changed files with 13 additions and 9 deletions
@@ -1,6 +1,10 @@
export default {
async importLocalStoreCode() {
await storeValue("imported_code", "TEST123", true);
return "TEST123";
async listStorageKeys() {
const keys = [];
for (let i = 0; i < window.localStorage.length; i++) {
keys.push(window.localStorage.key(i));
}
await storeValue("storage_keys", keys, true);
return keys;
}
}