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

blue-cot

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blue-cot - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

9

cot.js

@@ -6,4 +6,4 @@ // Generated by CoffeeScript 1.10.0

Cot = function(opts) {
var auth, hostname, notStandardHttpPort, notStandardHttpsPort, pass, port, protocol, ref, ssl, user;
port = opts.port, hostname = opts.hostname, user = opts.user, pass = opts.pass, auth = opts.auth, ssl = opts.ssl, hostname = opts.hostname;
var auth, debug, hostname, notStandardHttpPort, notStandardHttpsPort, pass, port, protocol, ref, ssl, user;
port = opts.port, hostname = opts.hostname, user = opts.user, pass = opts.pass, auth = opts.auth, ssl = opts.ssl, hostname = opts.hostname, debug = opts.debug;
protocol = ssl ? 'https' : 'http';

@@ -22,2 +22,3 @@ this.host = protocol + "://" + hostname + ":" + port;

}
this.debug = debug === true;
};

@@ -55,2 +56,6 @@

}
if (this.debug) {
body = JSON.stringify(params.body);
console.log('[debug] jsonRequest\n'.cyan, method, params.url, body);
}
if ((this.user != null) && (this.pass != null)) {

@@ -57,0 +62,0 @@ params.auth = {

@@ -19,4 +19,4 @@ {

},
"version": "2.0.0",
"main": "cot",
"version": "2.0.1",
"main": "cot.js",
"dependencies": {

@@ -23,0 +23,0 @@ "bluereq": "^2.1.0"

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