typedash
Version:
modern, type-safe collection of utility functions
1 lines • 624 B
Source Map (JSON)
{"version":3,"file":"noop-C6Zw47AJ.cjs","names":[],"sources":["../src/functions/noop/noop.ts"],"sourcesContent":["/**\n * A no-operation function that returns `undefined` for any input.\n * @param args Any arguments.\n * @example\n * ```ts\n * noop() // undefined\n * noop(1, 2, 3) // undefined\n * ```\n */\n\n// biome-ignore lint/correctness/noUnusedFunctionParameters: this is the whole point of the function\n// biome-ignore lint/suspicious/noEmptyBlockStatements: this is the whole point of the function\nexport function noop(...args: readonly unknown[]): void {}\n"],"mappings":";;;;;;;;;;;AAYA,SAAgB,KAAK,GAAG,MAAgC"}