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

vscode-zap

Package Overview
Dependencies
Maintainers
8
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-zap - npm Package Compare versions

Comparing version 0.0.91 to 0.0.92

6

out/src/scm.js

@@ -15,4 +15,6 @@ "use strict";

// Case-insensitive lexicographic ordering by file path.
const aFile = a.uri.fragment.toLowerCase();
const bFile = b.uri.fragment.toLowerCase();
const aPathParts = a.uri.fragment.toLowerCase().split("/");
const bPathParts = b.uri.fragment.toLowerCase().split("/");
const aFile = aPathParts[aPathParts.length - 1];
const bFile = bPathParts[bPathParts.length - 1];
if (aFile < bFile) {

@@ -19,0 +21,0 @@ return -1;

@@ -5,3 +5,3 @@ {

"description": "Real-time code synchronization",
"version": "0.0.91",
"version": "0.0.92",
"publisher": "sqs",

@@ -42,3 +42,3 @@ "preview": true,

"dependencies": {
"libzap": "^0.0.91",
"libzap": "^0.0.92",
"open": "^0.0.5",

@@ -45,0 +45,0 @@ "vscode-jsonrpc": "3.0.1-alpha.7"

@@ -15,4 +15,6 @@ import { scm, commands, workspace, Uri, Disposable, SCMProvider, SCMResourceGroup, Event, EventEmitter, SCMResource, SCMResourceDecorations, ProviderResult } from "vscode";

// Case-insensitive lexicographic ordering by file path.
const aFile = a.uri.fragment.toLowerCase();
const bFile = b.uri.fragment.toLowerCase();
const aPathParts = a.uri.fragment.toLowerCase().split("/");
const bPathParts = b.uri.fragment.toLowerCase().split("/");
const aFile = aPathParts[aPathParts.length - 1];
const bFile = bPathParts[bPathParts.length - 1];
if (aFile < bFile) {

@@ -19,0 +21,0 @@ return -1;

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