New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-linkedin-v2

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-linkedin-v2 - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

7

lib/LinkedInAPI.js

@@ -184,3 +184,8 @@ 'use strict';

if(response.statusCode !== 200 && response.statusCode !== 201) return reject(new Error(response.statusCode + ' ' + response.statusMessage + ': ' + JSON.stringify(body)));
return resolve(body);
try {
const data = JSON.parse(body);
return resolve(data);
} catch (err) {
return reject(err)
}
});

@@ -187,0 +192,0 @@ });

2

package.json
{
"name": "node-linkedin-v2",
"version": "0.0.4",
"version": "0.0.5",
"description": "Client for LinkedIn API v2",

@@ -5,0 +5,0 @@ "main": "index.js",

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