I understand async/await are really just promises but I'm curious if there's a reason not to make all functions async and await all value for consistency?
My Question
Is there any issues or implications to making all functions async? Are there any drawbacks?
This is for both Node.js and Client side systems (transpiled)