* The setTimeout() method sets a timer which executes a function once the * timer expires. * @param {Function} callback A function to be executed after the timer * expires. * @param {number} delay The time, in milliseconds that the timer should * wait bef
(callback, delay, arg)
| 2569 | * timer expires. |
| 2570 | * @param {Function} callback A function to be executed after the timer |
| 2571 | * expires. |
| 2572 | * @param {number} delay The time, in milliseconds that the timer should |
| 2573 | * wait before the specified function or code is executed. |
| 2574 | * @param {*} [arg] An optional argument to be passed to the callback function |
| 2575 | * when the timer expires. |
| 2576 | * @returns {NodeJS.Timeout|FastTimer} |
no outgoing calls
no test coverage detected