Created
December 14, 2023 15:52
-
-
Save sunpietro/e889d254b2ae76cc04eaa2ee85acbcc1 to your computer and use it in GitHub Desktop.
Revisions
-
sunpietro revised this gist
Dec 14, 2023 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,6 @@ const delay = async () => { }); return delayPromise; }; // await delay(); -
sunpietro created this gist
Dec 14, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ const delay = async () => { const delayPromise = new Promise((resolve) => { setTimeout(resolve, 20000); }); return delayPromise; };