UNPKG

@monstermann/fn

Version:

A utility library for TypeScript.

13 lines (12 loc) 229 B
//#region src/function/noop.ts /** * `noop(...args)` * * A no-operation function that accepts any number of arguments and returns void. * * ```ts * noop(); // undefined */ function noop(..._args) {} //#endregion export { noop };