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

nest

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nest - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

9

index.js

@@ -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"
}
}
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