2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-08 17:22:34 +03:00

chore(release): v1.7.2 (#6414)

Co-authored-by: DigitalBrainJS <12586868+DigitalBrainJS@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-05-21 19:57:14 +03:00
committed by GitHub
parent 4f79aef81b
commit 0e4f9fa290
17 changed files with 45 additions and 34 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
// Axios v1.7.1 Copyright (c) 2024 Matt Zabriskie and contributors
// Axios v1.7.2 Copyright (c) 2024 Matt Zabriskie and contributors
'use strict';
function bind(fn, thisArg) {
@@ -2678,11 +2678,11 @@ const fetchProgressDecorator = (total, fn) => {
}));
};
const isFetchSupported = typeof fetch !== 'undefined';
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream !== 'undefined';
const isFetchSupported = typeof fetch === 'function' && typeof Request === 'function' && typeof Response === 'function';
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream === 'function';
// used only inside the fetch adapter
const encodeText = isFetchSupported && (typeof TextEncoder !== 'undefined' ?
const encodeText = isFetchSupported && (typeof TextEncoder === 'function' ?
((encoder) => (str) => encoder.encode(str))(new TextEncoder()) :
async (str) => new Uint8Array(await new Response(str).arrayBuffer())
);
@@ -3032,7 +3032,7 @@ function dispatchRequest(config) {
});
}
const VERSION = "1.7.1";
const VERSION = "1.7.2";
const validators$1 = {};
+1 -1
View File
File diff suppressed because one or more lines are too long