@storm-stack/utilities
Version:
This package includes various base utility class and various functions to assist in the development process.
9 lines (8 loc) • 353 B
TypeScript
/**
* A no op, or no-op, function for no operation
*
* @remarks Please see {@link https://dev.to/praneshpsg239/noop-in-javascript-478h | this article} for more information.
*
* @param _params - An optional parameter passed to the function. It can be anything (but is not used in any way)
*/
export declare const noop: (_params?: unknown) => void;