Socket
Socket
Sign inDemoInstall

@clickhouse/client-common

Package Overview
Dependencies
Maintainers
4
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clickhouse/client-common - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

10

dist/utils/url.js

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

if (pathname) {
newUrl.pathname = pathname;
// See https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname
// > value for such "special scheme" URLs can never be the empty string,
// > but will instead always have at least one / character.
if (newUrl.pathname === '/') {
newUrl.pathname = pathname;
}
else {
newUrl.pathname += pathname;
}
}

@@ -11,0 +19,0 @@ if (searchParams) {

2

dist/version.d.ts

@@ -1,2 +0,2 @@

declare const _default: "0.2.4";
declare const _default: "0.2.5";
export default _default;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = '0.2.4';
exports.default = '0.2.5';
//# sourceMappingURL=version.js.map

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

"homepage": "https://clickhouse.com",
"version": "0.2.4",
"version": "0.2.5",
"license": "Apache-2.0",

@@ -8,0 +8,0 @@ "keywords": [

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