Socket
Socket
Sign inDemoInstall

green-data-react-sdk

Package Overview
Dependencies
6
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "green-data-react-sdk",
"version": "1.0.3",
"version": "1.0.4",
"description": "A simple react component that displays green data.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -22,3 +22,5 @@ import axios from "axios";

url: options.url,
res: error.response.data ? error.response.data : error.response,
res: error?.response?.data
? error?.response?.data
: error?.response,
code: error.response.status,

@@ -31,3 +33,5 @@ error: error.response.message,

url: options.url,
res: error.response.data ? error.response.data : error.response,
res: error?.response?.data
? error?.response?.data
: error?.response,
code: 500,

@@ -34,0 +38,0 @@ error: "error",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc