How to create a .env file and add your Environmental variables to your MAC OS.zshrc or .zprofile bash file
Set up variables in the file:
AUTH0_AUDIENCE=${audience}
AUTH0_DOMAIN=${domain}
Client_ID=${clientId}
Client_Secret=${clientSecret}
Given a function fn, an array of arguments args, and a timeout t in milliseconds, return a cancel function cancelFn.
After a delay of t, fn should be called with args passed as parameters unless cancelFn was invoked before the delay of t milliseconds elapses, specifically at cancelT ms. In that case, fn should never be called.
Example 1:
Input: fn = (x) => x * 5, args = [2], t = 20, cancelT = 50 Output: [{"time": 20, "returned": 10}]
To demonstrate understanding of the topics covered in week 3 of this course, as well as pair programming skills.
In this project, you will put the finishing touches on your project by collaborating on documentation, reviewing, refactoring, and re-deploying with a partner. This should take about 2 hours.
This is the third and final part of the Portfolio page project