2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-11 18:02:32 +03:00

Fix AxiosRequestHeaders & AxiosHeaders types; (#5482)

This commit is contained in:
Dmitriy Mozgovoy
2023-01-21 17:31:24 +02:00
committed by GitHub
parent 186ea062da
commit 6486929f70
8 changed files with 129 additions and 8 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms));
const remove = async (file) => {
console.log(`✓ Remove entry '${file}'...`);
try {
await sleep(100);
await sleep(1000);
await fs.remove(file);
} catch (err) {
console.warn(err.message);