augment-vir - v31.13.0
    Preparing search index...

    Function callAsynchronously

    • Call a function asynchronously without interrupting current synchronous execution, even if the function was originally synchronous.

      Type Parameters

      • T

      Parameters

      Returns Promise<T>

      import {callAsynchronously} from '@augment-vir/common';

      console.info('1');
      const later = callAsynchronously(() => {
      console.info('3');
      });
      console.info('2');
      await later;

      // logs 1,2,3 in numeric order