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

oauth-1.0a

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oauth-1.0a - npm Package Compare versions

Comparing version 0.2.1 to 1.0.0

8

oauth-1.0a.js

@@ -53,3 +53,3 @@ if (typeof(module) !== 'undefined' && typeof(exports) !== 'undefined') {

break;
case 'RSA-SHA1':

@@ -125,3 +125,3 @@ throw new Error('oauth-1.0a does not support this signature method right now. Coming Soon...');

* -> sort
*
*
* @param {Object} request data

@@ -176,3 +176,3 @@ * @param {Object} OAuth data

OAuth.prototype.deParam = function(string) {
var arr = decodeURIComponent(string).split('&');
var arr = string.split('&');
var data = {};

@@ -182,3 +182,3 @@

var item = arr[i].split('=');
data[item[0]] = item[1];
data[item[0]] = decodeURIComponent(item[1]);
}

@@ -185,0 +185,0 @@ return data;

{
"name": "oauth-1.0a",
"version": "0.2.1",
"version": "1.0.0",
"description": "OAuth 1.0a Request Authorization for Node and Browser.",

@@ -5,0 +5,0 @@ "scripts": {

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