Creates a promise that resolves after a specified delay
Parameters
ms: number
The number of milliseconds to pause execution
Returns Promise<void>
A Promise that resolves after the specified delay
Example
// Pause execution for 2 seconds awaitsleep(2000);
// Use in an async function asyncfunctionexample() { console.log('Start'); awaitsleep(1000); console.log('1 second later'); }
Remarks
This is a utility function for creating delays in async code.
It's useful for rate limiting, creating deliberate pauses, or testing timing-dependent code.
Creates a promise that resolves after a specified delay