just a few more todo items

This commit is contained in:
2023-12-09 12:46:26 -07:00
parent d8ca3be56a
commit 992bf5017b
3 changed files with 156 additions and 111 deletions

View File

@ -0,0 +1,18 @@
function fakeDelay(ms) {
/*
useful for testing allows for a fake response, allow us to see what the program does while waiting for data from the backend
REQUIRES:
time in milliseconds
needs a line like this to run
await fakeDelay(5000);
PROMISES:
nothing
Develop in part by: Brock
Contact: darkicewolf50@gmial.com
*/
return new Promise(resolve => setTimeout(resolve, ms));
}
export default fakeDelay;