Resolves a promise after a specified delay.
This function returns a promise that resolves after the given number of milliseconds (ms), optionally resolving with a provided value.
ms
A promise that resolves with the specified value after the delay.
The number of milliseconds to wait before resolving the promise.
Optional
The value to resolve with once the delay has passed. Default is undefined.
undefined
Generated using TypeDoc
Resolves a promise after a specified delay.
This function returns a promise that resolves after the given number of milliseconds (
ms
), optionally resolving with a provided value.Returns
A promise that resolves with the specified value after the delay.