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

@jitsi/js-utils

Package Overview
Dependencies
Maintainers
10
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jitsi/js-utils - npm Package Compare versions

Comparing version 2.0.5 to 2.0.6

17

jitsi-local-storage/index.js

@@ -135,2 +135,19 @@ import EventEmitter from 'events';

/**
* Switch between window.localStorage and DummyLocalStorage.
*/
setLocalStorageDisabled(value) {
this._localStorageDisabled = value;
try {
this._storage = value ? new DummyLocalStorage() : window.localStorage;
} catch (ignore) {
// localStorage throws an exception.
}
if (!this._storage) {
this._storage = new DummyLocalStorage();
}
}
/**
* Empties all keys out of the storage.

@@ -137,0 +154,0 @@ *

2

package.json
{
"name": "@jitsi/js-utils",
"version": "2.0.5",
"version": "2.0.6",
"description": "Utilities for Jitsi JS projects",

@@ -5,0 +5,0 @@ "repository": {

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