typedash
Version:
modern, type-safe collection of utility functions
15 lines (14 loc) • 318 B
JavaScript
//#region src/functions/noop/noop.ts
/**
* A no-operation function that returns `undefined` for any input.
* @param args Any arguments.
* @example
* ```ts
* noop() // undefined
* noop(1, 2, 3) // undefined
* ```
*/
function noop(...args) {}
//#endregion
export { noop as t };
//# sourceMappingURL=noop-Dqf1EiyV.js.map