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

react-cmf

Package Overview
Dependencies
Maintainers
5
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-cmf - npm Package Compare versions

Comparing version 0.72.2 to 0.72.3

3

lib/middlewares/http/middleware.js

@@ -78,5 +78,6 @@ 'use strict';

if (_typeof(options.body) === 'object') {
if (_typeof(options.body) === 'object' && !(options.body instanceof FormData)) {
options.body = JSON.stringify(options.body);
}
delete options.type;

@@ -83,0 +84,0 @@ return options;

@@ -95,3 +95,3 @@ {

},
"version": "0.72.2",
"version": "0.72.3",
"dependencies": {

@@ -98,0 +98,0 @@ "hoist-non-react-statics": "^1.2.0"

@@ -55,5 +55,6 @@ import get from 'lodash/get';

if (typeof options.body === 'object') {
if (typeof options.body === 'object' && !(options.body instanceof FormData)) {
options.body = JSON.stringify(options.body);
}
delete options.type;

@@ -60,0 +61,0 @@ return options;

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