Skip to content

Utility to convert async function to sync function, execute async function synchronously & resolve promise synchronously.

License

Notifications You must be signed in to change notification settings

ahzhezhe/async-utility

Repository files navigation

async-utility

npm package npm downloads GitHub test GitHub issues GitHub license

Utility to convert async function to sync function, execute async function synchronously & resolve promise synchronously.

Install via NPM

npm install async-utility

Usage

import { toSync, executeSync, resolveSync } from 'async-utility';

let result: number;
const asyncFn = (a: number, b: number): Promise<number> => new Promise(resolve => resolve(a + b));

// Convert async function to sync function
const syncFn = toSync(asyncFn);
result = syncFn(1, 2);

// Execute async function synchronously
result = executeSync(() => asyncFn(1, 2));

// Resolve promise synchronously
const promise = asyncFn(1, 2);
result = resolveSync(promise);

About

Utility to convert async function to sync function, execute async function synchronously & resolve promise synchronously.

Topics

Resources

License

Stars

Watchers

Forks