Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

idb

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

idb - npm Package Compare versions

Comparing version 7.0.0 to 7.0.1

2

package.json
{
"name": "idb",
"version": "7.0.0",
"version": "7.0.1",
"description": "A small wrapper that makes IndexedDB usable",

@@ -5,0 +5,0 @@ "main": "./build/index.cjs",

@@ -323,15 +323,15 @@ # IndexedDB with usability.

return (await dbPromise).get('keyval', key);
},
};
export async function set(key, val) {
return (await dbPromise).put('keyval', val, key);
},
};
export async function del(key) {
return (await dbPromise).delete('keyval', key);
},
};
export async function clear() {
return (await dbPromise).clear('keyval');
},
};
export async function keys() {
return (await dbPromise).getAllKeys('keyval');
},
};
```

@@ -338,0 +338,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc