Comparing version 0.1.0 to 0.1.1
@@ -86,4 +86,4 @@ // The MIT License | ||
*/ | ||
Client.prototype._request = function (method, options, callback) { | ||
options.path = this.path + options.path; | ||
Client.prototype._request = function (method, path, options, callback) { | ||
options.path = this.path + path; | ||
options.headers = options.headers || this.headers; | ||
@@ -200,7 +200,6 @@ options.encoding = 'undefined' !== typeof options.encoding ? | ||
options = options || {}; | ||
options.path = path; | ||
options = options || {}; | ||
return this._request(verb, options, callback); | ||
return this._request(verb, path, options, callback); | ||
}; | ||
}); |
{ | ||
"name": "nest", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "A Node HTTP client aimed at REST API's.", | ||
@@ -18,4 +18,4 @@ "repository": { | ||
"engines": { | ||
"node": ">=0.3.6" | ||
"node": ">=0.4.0" | ||
} | ||
} |
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
23122
590