Comparing version 0.2.7 to 0.2.8
@@ -192,3 +192,3 @@ /*! | ||
this.url = url.parse(options.url); | ||
if (this.url.auth !== undefined) { | ||
if ('auth' in this.url && !!this.url.auth) { | ||
var auth = this.url.auth.split(':'); | ||
@@ -447,3 +447,3 @@ if (options.user === undefined) { | ||
var proto; | ||
for(var sid in this.subs) { | ||
for (var sid in this.subs) { | ||
if (this.subs.hasOwnProperty(sid)) { | ||
@@ -450,0 +450,0 @@ var sub = this.subs[sid]; |
{ | ||
"name": "nats", | ||
"description": "Node.js client for NATS, a lightweight messaging system", | ||
"version": "0.2.7", | ||
"version": "0.2.8", | ||
"repository": { | ||
@@ -20,3 +20,3 @@ "type" : "git", | ||
"scripts": { "test": "make test" }, | ||
"engines": { "node": ">= 0.4.x < 0.7.0" } | ||
"engines": { "node": ">= 0.4.x <= 0.10.x" } | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24425