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

libzap

Package Overview
Dependencies
Maintainers
8
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libzap - npm Package Compare versions

Comparing version 0.0.94 to 0.0.95

7

lib/remote/handler.js

@@ -395,3 +395,8 @@ "use strict";

if (this.workspace) {
yield this.workspace.updateHistory(params.state.history || []);
if (!params.state.history) {
yield this.workspace.reset([]);
}
else {
yield this.workspace.updateHistory(params.state.history);
}
}

@@ -398,0 +403,0 @@ }

2

package.json
{
"name": "libzap",
"version": "0.0.94",
"version": "0.0.95",
"description": "JavaScript library for Zap",

@@ -5,0 +5,0 @@ "license": "none",

@@ -504,3 +504,9 @@ import { Disposable, Emitter, Event } from "vscode-jsonrpc";

if (this.workspace) {
await this.workspace.updateHistory(params.state.history || []);
// If we receive an update with a null history, assume this update
// is a reset action.
if (!params.state.history) {
await this.workspace.reset([]);
} else {
await this.workspace.updateHistory(params.state.history);
}
}

@@ -507,0 +513,0 @@ } else {

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