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

clickhouse

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clickhouse - npm Package Compare versions

Comparing version 1.0.8 to 1.0.999999999

10

index.js

@@ -173,4 +173,8 @@ 'use strict';

function (error, response, body) {
if (response.statusCode == 200 && response.statusMessage == 'OK') cb(null, me._parseData(body));
else cb(error ? error : response.body || response.statusMessage);
if (error) return cb(error);
if (response.statusCode == 200 && response.statusMessage == 'OK') return cb(null, me._parseData(body));
// Если попали сюда - значит что-то пошло не так
cb(response.body || response.statusMessage);
}

@@ -293,2 +297,2 @@ );

module.exports = ClickHouse;
module.exports = ClickHouse;

@@ -28,3 +28,3 @@ {

"name": "clickhouse",
"version": "1.0.8",
"version": "1.0.999999999",
"repository": {

@@ -31,0 +31,0 @@ "type": "git",

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