Socket
Socket
Sign inDemoInstall

retry-axios

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

retry-axios - npm Package Compare versions

Comparing version 3.1.2 to 3.1.3

5

build/src/index.js

@@ -49,4 +49,5 @@ import axios, { isCancel, } from 'axios';

for (const key of Object.keys(object)) {
if (typeof key === 'number') {
array[key] = object[key];
const number_ = Number.parseInt(key, 10);
if (!Number.isNaN(number_)) {
array[number_] = object[key];
}

@@ -53,0 +54,0 @@ }

2

package.json
{
"name": "retry-axios",
"version": "3.1.2",
"version": "3.1.3",
"description": "Retry HTTP requests with Axios.",

@@ -5,0 +5,0 @@ "exports": "./build/src/index.js",

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