New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

https-client

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

https-client - npm Package Compare versions

Comparing version
1.0.4
to
1.0.5
+1
-1
package.json
{
"name": "https-client",
"version": "1.0.4",
"version": "1.0.5",
"description": "Simple async RESTful client for node.js https module. Simple interface for GET/POST/PUT/DELETE calls.",

@@ -5,0 +5,0 @@ "author": "Will Tesler",

@@ -6,8 +6,8 @@ const HttpsClient = require('./client/HttpsClient');

const theModule = {
get: client.get,
post: client.post,
put: client.put,
delete: client.delete
get: client.get.bind(client),
post: client.post.bind(client),
put: client.put.bind(client),
delete: client.delete.bind(client)
}
module.exports = theModule;