Skip to content

Instantly share code, notes, and snippets.

@Akifcan
Created July 7, 2021 18:38
Show Gist options
  • Save Akifcan/5b7d16c302cc08117ddda72ca449576f to your computer and use it in GitHub Desktop.
Save Akifcan/5b7d16c302cc08117ddda72ca449576f to your computer and use it in GitHub Desktop.
list
var requestfile = window.indexedDB.open("file", 1);
var objectStore = db.transaction("photos").objectStore("photos");
objectStore.getAll().onsuccess = function (event) {
console.log(event.target.result)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment