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

papi

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

papi - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

.envrc

7

lib/client.js

@@ -41,5 +41,8 @@ 'use strict';

baseUrl.hostname = opts.baseUrl.hostname;
if (opts.baseUrl.username) baseUrl.auth = opts.baseUrl.username;
if (opts.baseUrl.username) {
baseUrl.auth = decodeURIComponent(opts.baseUrl.username);
}
if (opts.baseUrl.password) {
baseUrl.auth = (baseUrl.auth || '') + ':' + opts.baseUrl.password;
baseUrl.auth = (baseUrl.auth || '') + ':' +
decodeURIComponent(opts.baseUrl.password);
}

@@ -46,0 +49,0 @@ if (opts.baseUrl.port) baseUrl.port = opts.baseUrl.port;

{
"name": "papi",
"version": "1.1.0",
"version": "1.1.1",
"description": "Build HTTP API clients",

@@ -5,0 +5,0 @@ "main": "lib",

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