• 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

    // Pause execution for 2 seconds
    await sleep(2000);

    // Use in an async function
    async function example() {
    console.log('Start');
    await sleep(1000);
    console.log('1 second later');
    }

    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.