Skip to content

Instantly share code, notes, and snippets.

@smitroshin
Created August 14, 2024 17:42
Show Gist options
  • Save smitroshin/d8ccf1cf7baf2042691b7f9411bcd61c to your computer and use it in GitHub Desktop.
Save smitroshin/d8ccf1cf7baf2042691b7f9411bcd61c to your computer and use it in GitHub Desktop.
useIIFE
export const useIIFE = <T>(callback: () => T) => {
return iife(callback);
};
const iife = <T extends (...args: any[]) => any>(callback: T): ReturnType<T> => callback();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment