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.5 to 1.0.6

9

index.js

@@ -6,3 +6,4 @@ 'use strict';

stream = require('stream'),
querystring = require('querystring');
querystring = require('querystring'),
jsesc = require('jsesc');

@@ -273,5 +274,5 @@

url : this.getHost() + '?query=' + url,
body : values
.map(i => i.join('\t'))
.join('\n'),
body : values.map(function(row) {
return row.map(function(column) { return jsesc(column); }).join('\t');
})
headers : {

@@ -278,0 +279,0 @@ 'Content-Type': 'text/plain'

@@ -7,2 +7,3 @@ {

"async": "^2.0.0-rc.6",
"jsesc": "^2.2.0",
"lodash": "^4.13.1",

@@ -28,7 +29,7 @@ "querystring": "^0.2.0",

"name": "clickhouse",
"version": "1.0.5",
"repository" : {
"type" : "git",
"url" : "https://github.com/TimonKK/clickhouse.git"
"version": "1.0.6",
"repository": {
"type": "git",
"url": "https://github.com/TimonKK/clickhouse.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