utilscommonasyncNoopOn this pageasyncNoop An async function that does nothing and returns Promise<void>. Code 🔗 View source code Interface typescriptconst asyncNoop: () => Promise<void>; Usage typescriptimport { asyncNoop } from '@modern-kit/utils';const handleAsyncClick = (callback = asyncNoop) => { callback();};