utilscommonnoopOn this pagenoop A function that does nothing and returns undefined. Code 🔗 View source code Interface typescriptconst noop: () => void Usage typescriptimport { noop } from '@modern-kit/utils';const handleClick = (callback = noop) => { callback();};