Skip to content

Commit 7638952

Browse files
fix: ios11 breaks when build (#6608)
Co-authored-by: Jay <[email protected]>
1 parent 6dbbda6 commit 7638952

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/core/Axios.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ class Axios {
4040
return await this._request(configOrUrl, config);
4141
} catch (err) {
4242
if (err instanceof Error) {
43-
let dummy;
43+
let dummy = {};
4444

45-
Error.captureStackTrace ? Error.captureStackTrace(dummy = {}) : (dummy = new Error());
45+
Error.captureStackTrace ? Error.captureStackTrace(dummy) : (dummy = new Error());
4646

4747
// slice off the Error: ... line
4848
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, '') : '';

0 commit comments

Comments
 (0)