Socket
Socket
Sign inDemoInstall

fetch-retry

Package Overview
Dependencies
0
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.0.0 to 5.0.1

5

dist/fetch-retry.umd.js

@@ -69,3 +69,6 @@ (function (global, factory) {

var wrappedFetch = function (attempt) {
var _input = input instanceof Request ? input.clone() : input;
var _input =
typeof Request !== 'undefined' && input instanceof Request
? input.clone()
: input;
fetch(_input, init)

@@ -72,0 +75,0 @@ .then(function (response) {

@@ -65,3 +65,6 @@ 'use strict';

var wrappedFetch = function (attempt) {
var _input = input instanceof Request ? input.clone() : input;
var _input =
typeof Request !== 'undefined' && input instanceof Request
? input.clone()
: input;
fetch(_input, init)

@@ -68,0 +71,0 @@ .then(function (response) {

2

package.json
{
"name": "fetch-retry",
"version": "5.0.0",
"version": "5.0.1",
"description": "Extend any fetch library with retry functionality",

@@ -5,0 +5,0 @@ "repository": "https://github.com/jonbern/fetch-retry.git",

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