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

@acceleratxr/passport-twitter

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@acceleratxr/passport-twitter - npm Package Compare versions

Comparing version 2.0.0 to 2.1.0

5

dist/lib/TwitterV1Strategy.js

@@ -56,2 +56,3 @@ "use strict";

json = "data" in json ? json.data : json;
const names = json.name ? json.name.split(" ") : ["", ""];
const profile = {

@@ -63,4 +64,4 @@ provider: "twitter",

name: {
familyName: "",
givenName: "",
familyName: names[1],
givenName: names[0],
middleName: ""

@@ -67,0 +68,0 @@ },

@@ -83,2 +83,3 @@ "use strict";

json = "data" in json ? json.data : json;
const names = json.name ? json.name.split(" ") : ["", ""];
const profile = {

@@ -90,4 +91,4 @@ provider: "twitter",

name: {
familyName: "",
givenName: "",
familyName: names[1],
givenName: names[0],
middleName: ""

@@ -94,0 +95,0 @@ },

2

package.json
{
"name": "@acceleratxr/passport-twitter",
"version": "2.0.0",
"version": "2.1.0",
"description": "Passport strategy for authenticating with Twitter using the OAuth 2.0 API.",

@@ -5,0 +5,0 @@ "author": "AcceleratXR, Inc. <info@acceleratxr.com>",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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