https-client
Advanced tools
+1
-1
| { | ||
| "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", |
+4
-4
@@ -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; |
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
15459
0.34%