UNPKG

@monstermann/fn

Version:

A utility library for TypeScript.

12 lines 269 B
//#region src/function/noop.d.ts /** * `noop(...args)` * * A no-operation function that accepts any number of arguments and returns void. * * ```ts * noop(); // undefined */ declare function noop(..._args: readonly unknown[]): void; //#endregion export { noop };