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 1.1.4 to 1.1.5

5

lib/idb.js

@@ -243,3 +243,4 @@ 'use strict';

var callback = args[args.length - 1];
var request = (this._store || this._index)[funcName].apply(this._store, args.slice(0, -1));
var nativeObject = this._store || this._index;
var request = nativeObject[funcName].apply(nativeObject, args.slice(0, -1));
request.onsuccess = function() {

@@ -303,2 +304,2 @@ callback(request.result);

}
}());
}());

2

package.json
{
"name": "idb",
"version": "1.1.4",
"version": "1.1.5",
"description": "IndexedDB but with promises",

@@ -5,0 +5,0 @@ "main": "lib/idb.js",

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