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

portals

Package Overview
Dependencies
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

portals - npm Package Compare versions

Comparing version 3.1.3 to 3.1.4

4

dist/index.es.js

@@ -143,3 +143,5 @@ /*! *****************************************************************************

(req.body !== null &&
(req.body instanceof Object || Array.isArray(req.body)))) {
(typeof req.body === "object" &&
!(req.body instanceof FormData) ||
Array.isArray(req.body)))) {
if (typeof req.headers !== "object") {

@@ -146,0 +148,0 @@ req.headers = {};

@@ -147,3 +147,5 @@ 'use strict';

(req.body !== null &&
(req.body instanceof Object || Array.isArray(req.body)))) {
(typeof req.body === "object" &&
!(req.body instanceof FormData) ||
Array.isArray(req.body)))) {
if (typeof req.headers !== "object") {

@@ -150,0 +152,0 @@ req.headers = {};

{
"name": "portals",
"version": "3.1.3",
"version": "3.1.4",
"description": "Client-side HTTP requests with middleware support.",

@@ -5,0 +5,0 @@ "main": "dist/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