Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User IndexedDB #1230

Merged
merged 14 commits into from
May 22, 2024
4 changes: 3 additions & 1 deletion lib/utils/userIndexedDB.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ let IDB
* @param {Object} store
* @returns {Promise} OpenDBPromise
*/
export async function openDB(store) {
export async function openDB(_store) {

const store = _store.toString()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lekker!


const OpenDBPromise = new Promise((resolve, reject) => {

Expand Down
Loading